From Code to Community: Sponsoring The Perl and Raku Conference 2025 Learn more

# Copyright (C) 2012 Xerxes Tsang
# This program is free software; you can redistribute it and/or modify it
# under the terms of Perl Artistic License.
use strict;
=head1 NAME
Microsoft::AdCenter::V7::CustomerManagementService::Market - Represents "Market" in Microsoft AdCenter Customer Management Service.
=head1 SYNOPSIS
See L<http://msdn.microsoft.com/en-us/library/ee730327.aspx> for documentation of the various data objects.
=head1 ENUMERATION VALUES
CanadaEN
CanadaFR
France
Singapore
UK
Undefined
US
=cut
sub CanadaEN {
return 'CanadaEN';
}
sub CanadaFR {
return 'CanadaFR';
}
sub France {
return 'France';
}
sub Singapore {
return 'Singapore';
}
sub UK {
return 'UK';
}
sub Undefined {
return 'Undefined';
}
sub US {
return 'US';
}
1;