eBay::API::XML::Call::SetTaxTable - eBay::API::XML::Call::SetTaxTable documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::Call::SetTaxTable

DESCRIPTION

Top

SYNOPSIS

Top

INHERITANCE

Top

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

Subroutines:

Top

setTaxTable()

A container of tax jurisdiction information unique to a user/site combination.

  RequiredInput: Yes
#    Argument: 'ns:TaxTableType'


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

package eBay::API::XML::Call::SetTaxTable;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. SetTaxTable.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::SetTaxTable::SetTaxTableRequestType;
use eBay::API::XML::Call::SetTaxTable::SetTaxTableResponseType;


sub getApiCallName {
   return 'SetTaxTable';
}
sub getRequestDataTypeFullPackage {
   return 'eBay::API::XML::Call::SetTaxTable::SetTaxTableRequestType';
}
sub getResponseDataTypeFullPackage {
   return 'eBay::API::XML::Call::SetTaxTable::SetTaxTableResponseType';
}

#
# input properties
#

       
sub setTaxTable {
   my $self   = shift;
   my $pTaxTable = shift;
   $self->getRequestDataType()->setTaxTable($pTaxTable);
}



#
# output properties
#





1;