| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::ProStoresDetailsType
Details about the store.
eBay::API::XML::DataType::ProStoresDetailsType inherits from the eBay::API::XML::BaseDataType class
The username associated with the store. Returned only if the parent container is returned.
MaxLength: 200
# Argument: 'xs:string'
Calls: GetUserPreferences Returned: Conditionally
# Returns: 'xs:string'
The status--whether enabled or disabled. Returned only if the parent container is returned.
# Argument: 'ns:EnableCodeType'
Calls: GetUserPreferences Returned: Conditionally
# Returns: 'ns:EnableCodeType'
The name of the store. Returned only if the parent container is returned.
MaxLength: 200
# Argument: 'xs:string'
Calls: GetUserPreferences Returned: Conditionally
# Returns: 'xs:string'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::ProStoresDetailsType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ProStoresDetailsType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); use eBay::API::XML::DataType::Enum::EnableCodeType; my @gaProperties = ( [ 'SellerThirdPartyUsername', 'xs:string', '', '', '' ] , [ 'Status', 'ns:EnableCodeType', '' ,'eBay::API::XML::DataType::Enum::EnableCodeType', '' ] , [ 'StoreName', 'xs:string', '', '', '' ] ); push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setSellerThirdPartyUsername { my $self = shift; $self->{'SellerThirdPartyUsername'} = shift }
sub getSellerThirdPartyUsername { my $self = shift; return $self->{'SellerThirdPartyUsername'}; }
sub setStatus { my $self = shift; $self->{'Status'} = shift }
sub getStatus { my $self = shift; return $self->{'Status'}; }
sub setStoreName { my $self = shift; $self->{'StoreName'} = shift }
sub getStoreName { my $self = shift; return $self->{'StoreName'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;