| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenResponseType
Returns a Client Alerts token.
eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenResponseType inherits from the eBay::API::XML::ResponseDataType 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.
# Argument: 'xs:string'
Returned: Always # Returns: 'xs:string'
A Client Alerts token expires after seven days.
# Argument: 'xs:dateTime'
Returned: Always # Returns: 'xs:dateTime'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::GetClientAlertsAuthToken::GetClientAlertsAuthTokenResponseType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. GetClientAlertsAuthTokenResponseType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::ResponseDataType; our @ISA = ("eBay::API::XML::ResponseDataType"); my @gaProperties = ( [ 'ClientAlertsAuthToken', 'xs:string', '', '', '' ] , [ 'HardExpirationTime', 'xs:dateTime', '', '', '' ] ); push @gaProperties, @{eBay::API::XML::ResponseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::ResponseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setClientAlertsAuthToken { my $self = shift; $self->{'ClientAlertsAuthToken'} = shift }
sub getClientAlertsAuthToken { my $self = shift; return $self->{'ClientAlertsAuthToken'}; }
sub setHardExpirationTime { my $self = shift; $self->{'HardExpirationTime'} = shift }
sub getHardExpirationTime { my $self = shift; return $self->{'HardExpirationTime'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;