| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::NotificationRoleCodeType
Defines roles for platform notifications.
(in) Specifies that you want to set or return application-level preferences. Default value.
(in) Specifies that you want to set or return user-level preferences.
(in) Specifies that you want to set or return user data-level preferences.
(in) Specifies that you want to set or return event-level preferences.
Reserved for future use
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::Enum::NotificationRoleCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. NotificationRoleCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant Application => scalar('Application');
use constant User => scalar('User');
use constant UserData => scalar('UserData');
use constant Event => scalar('Event');
use constant CustomCode => scalar('CustomCode'); 1;