| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::SetTaxTable::SetTaxTableRequestType
Sets the tax table for a seller on a given site.
eBay::API::XML::Call::SetTaxTable::SetTaxTableRequestType inherits from the eBay::API::XML::RequestDataType class
A container of tax jurisdiction information unique to a user/site combination.
RequiredInput: Yes # Argument: 'ns:TaxTableType'
# Returns: 'ns:TaxTableType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::SetTaxTable::SetTaxTableRequestType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SetTaxTableRequestType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::RequestDataType; our @ISA = ("eBay::API::XML::RequestDataType"); use eBay::API::XML::DataType::TaxTableType; my @gaProperties = ( [ 'TaxTable', 'ns:TaxTableType', '' ,'eBay::API::XML::DataType::TaxTableType', '1' ] ); push @gaProperties, @{eBay::API::XML::RequestDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::RequestDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setTaxTable { my $self = shift; $self->{'TaxTable'} = shift }
sub getTaxTable { my $self = shift; return $self->_getDataTypeInstance( 'TaxTable' ,'eBay::API::XML::DataType::TaxTableType'); } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;