| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetClientAlertsAuthToken
eBay::API::XML::Call::GetClientAlertsAuthToken inherits from the eBay::API::XML::BaseCall class
This token string is required for the Login call in the Client Alerts API. The Client Alerts GetUserAlerts call, which returns alerts about events associated with a specific user, requires Login.
Returned: Always # Returns: 'xs:string'
A Client Alerts token expires after seven days.
Returned: Always # Returns: 'xs:dateTime'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetClientAlertsAuthToken; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetClientAlertsAuthToken.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseCall; our @ISA = ("eBay::API::XML::BaseCall"); use eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenRequestType; use eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenResponseType;
sub getApiCallName { return 'GetClientAlertsAuthToken'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenResponseType'; } # # input properties # # # output properties #
sub getClientAlertsAuthToken { my $self = shift; return $self->getResponseDataType()->getClientAlertsAuthToken(); }
sub getHardExpirationTime { my $self = shift; return $self->getResponseDataType()->getHardExpirationTime(); } 1;