| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::Enum::SMSSubscriptionErrorCodeCodeType
Type of SMS subscription error.
Aggregator not available.
Phone number invalid.
Phone number has changed.
The carrier has changed.
The user has requested to be unregistered.
(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::SMSSubscriptionErrorCodeCodeType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. SMSSubscriptionErrorCodeCodeType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use constant SMSAggregatorNotAvailable => scalar('SMSAggregatorNotAvailable');
use constant PhoneNumberInvalid => scalar('PhoneNumberInvalid');
use constant PhoneNumberChanged => scalar('PhoneNumberChanged');
use constant PhoneNumberCarrierChanged => scalar('PhoneNumberCarrierChanged');
use constant UserRequestedUnregistration => scalar('UserRequestedUnregistration');
use constant CustomCode => scalar('CustomCode'); 1;