| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::DeviceTypeCodeType
The means of receipt of notification.
Typical API, web page interaction.
For SMS/wireless application. Note that SMS is currently reserved for future use.
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.
(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;