| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageRequestType
Retrieves the custom page or pages for the user's Store.
eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageRequestType inherits from the eBay::API::XML::RequestDataType class
If a PageID is specified, then that page is returned, and the returned page contains the page Content. If no PageID is specified, then all pages are returned, without the page Content.
RequiredInput: No # Argument: 'xs:long'
# Returns: 'xs:long'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageRequestType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetStoreCustomPageRequestType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::RequestDataType; our @ISA = ("eBay::API::XML::RequestDataType"); my @gaProperties = ( [ 'PageID', 'xs:long', '', '', '' ] ); push @gaProperties, @{eBay::API::XML::RequestDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::RequestDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setPageID { my $self = shift; $self->{'PageID'} = shift }
sub getPageID { my $self = shift; return $self->{'PageID'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;