| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageRequestType
Sets a custom page for a user's eBay Store. The page can include static HTML content as well as dynamic content that is added using the special eBay Stores tags.
eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageRequestType inherits from the eBay::API::XML::RequestDataType class
The custom page being submitted.
RequiredInput: Yes # Argument: 'ns:StoreCustomPageType'
# Returns: 'ns:StoreCustomPageType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageRequestType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SetStoreCustomPageRequestType.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"); use eBay::API::XML::DataType::StoreCustomPageType; my @gaProperties = ( [ 'CustomPage', 'ns:StoreCustomPageType', '' ,'eBay::API::XML::DataType::StoreCustomPageType', '1' ] ); 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 setCustomPage { my $self = shift; $self->{'CustomPage'} = shift }
sub getCustomPage { my $self = shift; return $self->_getDataTypeInstance( 'CustomPage' ,'eBay::API::XML::DataType::StoreCustomPageType'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;