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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::SetUserNotesActionCodeType

DESCRIPTION

Top

Specifies the action to take for an item's My eBay notes.

SYNOPSIS

Top

Enums:

Top

AddOrUpdate

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.

Delete

Deletes any existing My eBay notes for the specified item. Specifying Delete when no notes exist does nothing, but does not return an error.

CustomCode


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;