| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::ModifyActionCodeType
The type of action to take.
An addition.
A removal.
A modification.
Reserved for future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::ModifyActionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ModifyActionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Add => scalar('Add');
use constant Delete => scalar('Delete');
use constant Update => scalar('Update');
use constant CustomCode => scalar('CustomCode'); 1;