eBay::API::XML::Call::SetStoreCustomPage - eBay::API::XML::Call::SetStoreCustomPage documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::SetStoreCustomPage

DESCRIPTION

Top

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setCustomPage()

The custom page being submitted.

  RequiredInput: Yes
#    Argument: 'ns:StoreCustomPageType'

getCustomPage()

The custom page that was submitted.

  Returned: Always
#    Returns: 'ns:StoreCustomPageType'


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

package eBay::API::XML::Call::SetStoreCustomPage;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. SetStoreCustomPage.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::SetStoreCustomPage::SetStoreCustomPageRequestType;
use eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageResponseType;


sub getApiCallName {
   return 'SetStoreCustomPage';
}
sub getRequestDataTypeFullPackage {
   return 'eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageRequestType';
}
sub getResponseDataTypeFullPackage {
   return 'eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageResponseType';
}

#
# input properties
#

       
sub setCustomPage {
   my $self   = shift;
   my $pCustomPage = shift;
   $self->getRequestDataType()->setCustomPage($pCustomPage);
}



#
# output properties
#

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





1;