eBay::API::XML::Call::GetStoreCustomPage - eBay::API::XML::Call::GetStoreCustomPage documentation


eBay-API documentation Contained in the eBay-API distribution.

Index


Code Index:

NAME

Top

eBay::API::XML::Call::GetStoreCustomPage

DESCRIPTION

Top

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::GetStoreCustomPage inherits from the eBay::API::XML::BaseCall class

Subroutines:

Top

setPageID()

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'

getCustomPageArray()

The custom page or custom pages.

  Returned: Always
#    Returns: 'ns:StoreCustomPageArrayType'


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::Call::GetStoreCustomPage;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. GetStoreCustomPage.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::GetStoreCustomPage::GetStoreCustomPageRequestType;
use eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageResponseType;


sub getApiCallName {
   return 'GetStoreCustomPage';
}
sub getRequestDataTypeFullPackage {
   return 'eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageRequestType';
}
sub getResponseDataTypeFullPackage {
   return 'eBay::API::XML::Call::GetStoreCustomPage::GetStoreCustomPageResponseType';
}

#
# input properties
#

       
sub setPageID {
   my $self   = shift;
   my $sPageID = shift;
   $self->getRequestDataType()->setPageID($sPageID);
}



#
# output properties
#

       
sub getCustomPageArray {
   my $self = shift;
   return $self->getResponseDataType()->getCustomPageArray();
}





1;