| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::SearchStoreFilterType
One of the data filters used when searching for items using GetSearchResults. Allows filtering based on an item's appearing in a specific eBay Store.
eBay::API::XML::DataType::SearchStoreFilterType inherits from the eBay::API::XML::BaseDataType class
The name of the eBay Store in which the item is listed. The name of the store is case sensitive.
Calls: GetSearchResults RequiredInput: No
# Argument: 'xs:string'
# Returns: 'xs:string'
Specifies the type of store search used in the filtering: one eBay Store (name specified in StoreName) or all eBay stores, and also by listing type. Possible values are enumerated in the StoreSearchCodeType code list.
Calls: GetSearchResults RequiredInput: No
# Argument: 'ns:StoreSearchCodeType'
# Returns: 'ns:StoreSearchCodeType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::SearchStoreFilterType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SearchStoreFilterType.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::StoreSearchCodeType; my @gaProperties = ( [ 'StoreName', 'xs:string', '', '', '' ] , [ 'StoreSearch', 'ns:StoreSearchCodeType', '' ,'eBay::API::XML::DataType::Enum::StoreSearchCodeType', '' ] ); 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 setStoreName { my $self = shift; $self->{'StoreName'} = shift }
sub getStoreName { my $self = shift; return $self->{'StoreName'}; }
sub setStoreSearch { my $self = shift; $self->{'StoreSearch'} = shift }
sub getStoreSearch { my $self = shift; return $self->{'StoreSearch'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;