eBay::API::XML::DataType::Enum::VATStatusCodeType - eBay::API::XML::DataType::Enum::VATStatusCodeType documentation


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::VATStatusCodeType

DESCRIPTION

Top

Indicates whether or not the user is subject to VAT. Users who have registered with eBay as VAT-exempt are not subject to VAT. See documentation on Value-Added Tax (VAT).

SYNOPSIS

Top

Enums:

Top

NoVATTax

(out) VAT is not applicable

VATTax

(out) Residence in a country with VAT and user is not registered as VAT-exempt

VATExempt

(out) Residence in a country with VAT and user is registered as VAT-exempt

CustomCode

(out) Reserved for internal or future use


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

package eBay::API::XML::DataType::Enum::VATStatusCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. VATStatusCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant NoVATTax => scalar('NoVATTax');



use constant VATTax => scalar('VATTax');



use constant VATExempt => scalar('VATExempt');



use constant CustomCode => scalar('CustomCode');







1;