| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::DataType::CheckoutStatusType
eBay::API::XML::DataType::CheckoutStatusType inherits from the eBay::API::XML::BaseDataType class
The time the status was last modified. Also applicable to Half.com (for GetOrders).
# Argument: 'xs:dateTime'
Calls: GetOrders Returned: Always Details: DetailLevel: none Calls: GetOrderTransactions Returned: Always Details: DetailLevel: none, ItemReturnDescription, ReturnAll
# Returns: 'xs:dateTime'
The payment method the buyer uses to purchase the item. Also applicable to Half.com (for GetOrders).
# Argument: 'ns:BuyerPaymentMethodCodeType'
Calls: GetOrders Returned: Always Details: DetailLevel: none Calls: GetOrderTransactions Returned: Always Details: DetailLevel: none, ItemReturnDescription, ReturnAll
# Returns: 'ns:BuyerPaymentMethodCodeType'
The status of the order. Also applicable to Half.com (for GetOrders).
# Argument: 'ns:CompleteStatusCodeType'
Calls: GetOrders Returned: Always Details: DetailLevel: none Calls: GetOrderTransactions Returned: Always Details: DetailLevel: none, ItemReturnDescription, ReturnAll
# Returns: 'ns:CompleteStatusCodeType'
Indicates the success or failure of a buyer's online payment. Also applicable to Half.com (for GetOrders).
# Argument: 'ns:PaymentStatusCodeType'
Calls: GetOrders Returned: Always Details: DetailLevel: none Calls: GetOrderTransactions Returned: Always Details: DetailLevel: none, ItemReturnDescription, ReturnAll
# Returns: 'ns:PaymentStatusCodeType'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::DataType::CheckoutStatusType; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. CheckoutStatusType.pm # Generated by: ......... genEBayApiDataTypes.pl # Last Generated: ....... 08/24/2008 16:44 # API Release Number: ... 579 # ##########################################################################
use eBay::API::XML::BaseDataType; our @ISA = ("eBay::API::XML::BaseDataType"); use eBay::API::XML::DataType::Enum::BuyerPaymentMethodCodeType; use eBay::API::XML::DataType::Enum::CompleteStatusCodeType; use eBay::API::XML::DataType::Enum::PaymentStatusCodeType; my @gaProperties = ( [ 'LastModifiedTime', 'xs:dateTime', '', '', '' ] , [ 'PaymentMethod', 'ns:BuyerPaymentMethodCodeType', '' ,'eBay::API::XML::DataType::Enum::BuyerPaymentMethodCodeType', '' ] , [ 'Status', 'ns:CompleteStatusCodeType', '' ,'eBay::API::XML::DataType::Enum::CompleteStatusCodeType', '' ] , [ 'eBayPaymentStatus', 'ns:PaymentStatusCodeType', '' ,'eBay::API::XML::DataType::Enum::PaymentStatusCodeType', '' ] ); push @gaProperties, @{eBay::API::XML::BaseDataType::getPropertiesList()}; my @gaAttributes = ( ); push @gaAttributes, @{eBay::API::XML::BaseDataType::getAttributesList()};
sub new { my $classname = shift; my %args = @_; my $self = $classname->SUPER::new(%args); return $self; } sub isScalar { return 0; }
sub setLastModifiedTime { my $self = shift; $self->{'LastModifiedTime'} = shift }
sub getLastModifiedTime { my $self = shift; return $self->{'LastModifiedTime'}; }
sub setPaymentMethod { my $self = shift; $self->{'PaymentMethod'} = shift }
sub getPaymentMethod { my $self = shift; return $self->{'PaymentMethod'}; }
sub setStatus { my $self = shift; $self->{'Status'} = shift }
sub getStatus { my $self = shift; return $self->{'Status'}; }
sub setEBayPaymentStatus { my $self = shift; $self->{'eBayPaymentStatus'} = shift }
sub getEBayPaymentStatus { my $self = shift; return $self->{'eBayPaymentStatus'}; } ## Attribute and Property lists sub getPropertiesList { my $self = shift; return \@gaProperties; } sub getAttributesList { my $self = shift; return \@gaAttributes; } 1;