| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::AddTransactionConfirmationItem::AddTransactionConfirmationItemResponseType
Returns an item ID for a new Transaction Confirmation Request (TCR).
eBay::API::XML::Call::AddTransactionConfirmationItem::AddTransactionConfirmationItemResponseType inherits from the eBay::API::XML::ResponseDataType class
The date and time when the item in the new Transaction Confirmation Request (TCR) is no longer available for purchase.
# Argument: 'xs:dateTime'
Returned: Always # Returns: 'xs:dateTime'
The new item ID for the item in the new Transaction Confirmation Request (TCR). This field is not returned if the request was only used to verify that a new TCR could be created.
# Argument: 'ns:ItemIDType'
Returned: Conditionally # Returns: 'ns:ItemIDType'
The date and time when the item in the new Transaction Confirmation Request (TCR) becomes available for purchase.
# 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::AddTransactionConfirmationItem::AddTransactionConfirmationItemResponseType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. AddTransactionConfirmationItemResponseType.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"); use eBay::API::XML::DataType::ItemIDType; my @gaProperties = ( [ 'EndTime', 'xs:dateTime', '', '', '' ] , [ 'ItemID', 'ns:ItemIDType', '' ,'eBay::API::XML::DataType::ItemIDType', '1' ] , [ 'StartTime', '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 setEndTime { my $self = shift; $self->{'EndTime'} = shift }
sub getEndTime { my $self = shift; return $self->{'EndTime'}; }
sub setItemID { my $self = shift; $self->{'ItemID'} = shift }
sub getItemID { my $self = shift; return $self->_getDataTypeInstance( 'ItemID' ,'eBay::API::XML::DataType::ItemIDType'); }
sub setStartTime { my $self = shift; $self->{'StartTime'} = shift }
sub getStartTime { my $self = shift; return $self->{'StartTime'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;