| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageResponseType
Contains the custom page or pages for the user's Store.
eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageResponseType inherits from the eBay::API::XML::ResponseDataType class
The custom page or custom pages.
# Argument: 'ns:StoreCustomPageArrayType'
Returned: Always # Returns: 'ns:StoreCustomPageArrayType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageResponseType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetStoreCustomPageResponseType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::ResponseDataType; our @ISA = ("eBay::API::XML::ResponseDataType"); use eBay::API::XML::DataType::StoreCustomPageArrayType; my @gaProperties = ( [ 'CustomPageArray', 'ns:StoreCustomPageArrayType', '' ,'eBay::API::XML::DataType::StoreCustomPageArrayType', '1' ] ); push @gaProperties, @{eBay::API::XML::ResponseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::ResponseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setCustomPageArray { my $self = shift; $self->{'CustomPageArray'} = shift }
sub getCustomPageArray { my $self = shift; return $self->_getDataTypeInstance( 'CustomPageArray' ,'eBay::API::XML::DataType::StoreCustomPageArrayType'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;