| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::SetUserNotesActionCodeType
Specifies the action to take for an item's My eBay notes.
Creates or replaces an item's My eBay notes. Note that if the specified item already has notes in My eBay, the new notes will completely replace the existing notes. They will not be appended.
Deletes any existing My eBay notes for the specified item. Specifying Delete when no notes exist does nothing, but does not return an error.
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::SetUserNotesActionCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SetUserNotesActionCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant AddOrUpdate => scalar('AddOrUpdate');
use constant Delete => scalar('Delete');
use constant CustomCode => scalar('CustomCode'); 1;