| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::VerifyAddSecondChanceItem::VerifyAddSecondChanceItemResponseType
VerifyAddSecondChanceItem request to emulate creation of a new Second Chance Offer for an item to one of that item's bidders.
eBay::API::XML::Call::VerifyAddSecondChanceItem::VerifyAddSecondChanceItemResponseType inherits from the eBay::API::XML::ResponseDataType class
Indicates the date and time when the second chance offer listing expires, at which time the listing ends (if the recipient user does not purchase the item first).
# Argument: 'xs:dateTime'
Returned: Always # Returns: 'xs:dateTime'
Indicates the date and time when the the new second chance offer listing became active and the recipient user could purchase the item.
# 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::VerifyAddSecondChanceItem::VerifyAddSecondChanceItemResponseType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. VerifyAddSecondChanceItemResponseType.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 = ( [ 'EndTime', 'xs:dateTime', '', '', '' ] , [ '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 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;