| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::SetStore
eBay::API::XML::Call::SetStore inherits from the eBay::API::XML::BaseCall class
Specifies the Store configuration that is being set for the user.
RequiredInput: Yes # Argument: 'ns:StoreType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::SetStore; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SetStore.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::SetStore::SetStoreRequestType; use eBay::API::XML::Call::SetStore::SetStoreResponseType;
sub getApiCallName { return 'SetStore'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::SetStore::SetStoreRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::SetStore::SetStoreResponseType'; } # # input properties #
sub setStore { my $self = shift; my $pStore = shift; $self->getRequestDataType()->setStore($pStore); } # # output properties # 1;