| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::VATStatusCodeType
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).
(out) VAT is not applicable
(out) Residence in a country with VAT and user is not registered as VAT-exempt
(out) Residence in a country with VAT and user is registered as VAT-exempt
(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;