| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetStoreOptions
eBay::API::XML::Call::GetStoreOptions inherits from the eBay::API::XML::BaseCall class
The current set of advances themes. Unlike basic themes, you can use any color scheme with an advanced theme. These themes are suitable for more advanced customization.
Returned: Always # Returns: 'ns:StoreThemeArrayType'
The current set of basic themes. Each basic theme definition specifies a valid color scheme for the theme.
Returned: Always # Returns: 'ns:StoreThemeArrayType'
The current set of Store logos. These logos are used in the Store header.
Returned: Always # Returns: 'ns:StoreLogoArrayType'
The maximum number of categories in this store.
Returned: Always # Returns: 'xs:int'
The maximum number of category levels in this store.
Returned: Always # Returns: 'xs:int'
The current set of eBay Store subscription tiers and corresponding subscription prices.
Returned: Always # Returns: 'ns:StoreSubscriptionArrayType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetStoreOptions; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetStoreOptions.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseCall; our @ISA = ("eBay::API::XML::BaseCall"); use eBay::API::XML::Call::GetStoreOptions::GetStoreOptionsRequestType; use eBay::API::XML::Call::GetStoreOptions::GetStoreOptionsResponseType;
sub getApiCallName { return 'GetStoreOptions'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::GetStoreOptions::GetStoreOptionsRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::GetStoreOptions::GetStoreOptionsResponseType'; } # # input properties # # # output properties #
sub getAdvancedThemeArray { my $self = shift; return $self->getResponseDataType()->getAdvancedThemeArray(); }
sub getBasicThemeArray { my $self = shift; return $self->getResponseDataType()->getBasicThemeArray(); }
sub getLogoArray { my $self = shift; return $self->getResponseDataType()->getLogoArray(); }
sub getMaxCategories { my $self = shift; return $self->getResponseDataType()->getMaxCategories(); }
sub getMaxCategoryLevels { my $self = shift; return $self->getResponseDataType()->getMaxCategoryLevels(); }
sub getSubscriptionArray { my $self = shift; return $self->getResponseDataType()->getSubscriptionArray(); } 1;