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


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

Index


Code Index:

NAME

Top

eBay::API::XML::DataType::Enum::DeviceTypeCodeType

DESCRIPTION

Top

The means of receipt of notification.

SYNOPSIS

Top

Enums:

Top

Platform

Typical API, web page interaction.

SMS

For SMS/wireless application. Note that SMS is currently reserved for future use.

ClientAlerts

Warning: do NOT set this value in production if you currently use Platform Notifications with this application ID. Setting this value will discontinue all platform notifications for this application ID, until this value is reset to Platform. <br> <br> Set this enum value to specify that the notification client is a Client Alerts API client. Alerts will be delivered through the Client Alerts system.

CustomCode

(out) Reserved for internal or future use.


eBay-API documentation Contained in the eBay-API distribution.
#!/usr/bin/perl

package eBay::API::XML::DataType::Enum::DeviceTypeCodeType;

use strict;
use warnings;  

##########################################################################
#
# Module: ............... <user defined location>eBay/API/XML
# File: ................. DeviceTypeCodeType.pm
# Generated by: ......... genEBayApiDataTypes.pl
# Last Generated: ....... 08/24/2008 16:44
# API Release Number: ... 579
#
##########################################################################  


use constant Platform => scalar('Platform');



use constant SMS => scalar('SMS');



use constant ClientAlerts => scalar('ClientAlerts');



use constant CustomCode => scalar('CustomCode');







1;