| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DescriptionReviseModeCodeType
(in) Specifies that you want to replace the description text of an item.
(in) Specifies that you want to prepend text to the description text of an item.
(in) Specifies that you want to append text to the description text of an item.
Reserved for internal or future use.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::DescriptionReviseModeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. DescriptionReviseModeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Replace => scalar('Replace');
use constant Prepend => scalar('Prepend');
use constant Append => scalar('Append');
use constant CustomCode => scalar('CustomCode'); 1;