1# -*- perl -*-
2# !!! DO NOT EDIT !!!
3# This file was automatically generated.
4package Net::Amazon::Validate::ItemSearch::fr::VideoGames;
5
6use 5.006;
7use strict;
8use warnings;
9
10sub new {
11    my ($class , %options) = @_;
12    my $self = {
13        '_default' => 'Title',
14        %options,
15    };
16
17    push @{$self->{_options}}, 'Author';
18    push @{$self->{_options}}, 'Brand';
19    push @{$self->{_options}}, 'BrowseNode';
20    push @{$self->{_options}}, 'Condition';
21    push @{$self->{_options}}, 'Count';
22    push @{$self->{_options}}, 'ItemPage';
23    push @{$self->{_options}}, 'Keywords';
24    push @{$self->{_options}}, 'Manufacturer';
25    push @{$self->{_options}}, 'MaximumPrice';
26    push @{$self->{_options}}, 'MerchantId';
27    push @{$self->{_options}}, 'MinimumPrice';
28    push @{$self->{_options}}, 'Sort';
29    push @{$self->{_options}}, 'Title';
30
31    bless $self, $class;
32}
33
34sub user_or_default {
35    my ($self, $user) = @_;
36    if (defined $user && length($user) > 0) {
37        return $self->find_match($user);
38    }
39    return $self->default();
40}
41
42sub default {
43    my ($self) = @_;
44    return $self->{_default};
45}
46
47sub find_match {
48    my ($self, $value) = @_;
49    for (@{$self->{_options}}) {
50        return $_ if lc($_) eq lc($value);
51    }
52    die "$value is not a valid value for fr::VideoGames!\n";
53}
54
551;
56
57__END__
58
59=head1 NAME
60
61Net::Amazon::Validate::ItemSearch::fr::VideoGames - valid search indicies
62for the fr locale and the VideoGames SearchIndex.
63
64=head1 DESCRIPTION
65
66The default value is Title, unless mode is specified.
67
68The list of available values are:
69
70    Author
71    Brand
72    BrowseNode
73    Condition
74    Count
75    ItemPage
76    Keywords
77    Manufacturer
78    MaximumPrice
79    MerchantId
80    MinimumPrice
81    Sort
82    Title
83
84=cut
85