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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::NotificationRoleCodeType

DESCRIPTION

Top

Defines roles for platform notifications.

SYNOPSIS

Top

Enums:

Top

Application

(in) Specifies that you want to set or return application-level preferences. Default value.

User

(in) Specifies that you want to set or return user-level preferences.

UserData

(in) Specifies that you want to set or return user data-level preferences.

Event

(in) Specifies that you want to set or return event-level preferences.

CustomCode

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;