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


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

Index


Code Index:

NAME

Top

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

DESCRIPTION

Top

Returned after calling SetStoreCustomPageRequest. This serves as confirmation that the custom page was successfully submitted.

SYNOPSIS

Top

INHERITANCE

Top

eBay::API::XML::Call::SetStoreCustomPage::SetStoreCustomPageResponseType inherits from the eBay::API::XML::ResponseDataType class

Subroutines:

Top

setCustomPage()

The custom page that was submitted.

# Argument: 'ns:StoreCustomPageType'

getCustomPage()

  Returned: Always
#    Returns: 'ns:StoreCustomPageType'


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

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

use strict;
use warnings;  

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


my @gaProperties = ( [ 'CustomPage', 'ns:StoreCustomPageType', ''
	     ,'eBay::API::XML::DataType::StoreCustomPageType', '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 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;