| eBay-API documentation | Contained in the eBay-API distribution. |
eBay::API::XML::Call::ReviseCheckoutStatus
eBay::API::XML::Call::ReviseCheckoutStatus inherits from the eBay::API::XML::BaseCall class
Discount or charge agreed to by the buyer and seller. A positive value indicates that the amount is an extra charge being paid to the seller by the buyer. A negative value indicates that the amount is a discount given to the buyer by the seller.
RequiredInput: No # Argument: 'ns:AmountType'
The amount paid by the buyer. For an eBay Stores item, the value passed in AmountPaid is the transaction/item price. For a US eBay Motors item, AmountPaid is the total amount paid by the buyer for the deposit.
RequiredInput: No # Argument: 'ns:AmountType'
eBay ID for the buyer in the transaction being revised. A transaction is uniquely identified by one of two means: (a) You provide a TransactionID and ItemID. (This is the preferred approach.), OR, (b) You provide a BuyerID and ItemID and eBay identifies only one transaction for that combination (an error is returned if there are multiple transactions for that combination). Note: If all three are provided (that is, BuyerID, ItemID and TransactionID), BuyerID is ignored.
RequiredInput: Conditionally # Argument: 'xs:string'
Italy site (site ID 101) only. Enables you to specify the cash-on-delivery (COD) cost, for COD shipping.
SeeLink: URL: http://developer.ebay.com/DevZone/XML/docs/WebHelp/index.htm?context=eBay_XML_API&topic=CODInShippingDetails Title: Specifying the Cash on Delivery Option in Shipping Details
RequiredInput: No # Argument: 'ns:AmountType'
Not supported.
RequiredInput: No # Argument: 'ns:CheckoutMethodCodeType'
The current status of the checkout process for the transaction.
RequiredInput: Yes # Argument: 'ns:CompleteStatusCodeType'
Not supported.
MaxLength: 20
RequiredInput: No # Argument: 'xs:string'
Not supported.
RequiredInput: No # Argument: 'ns:ExternalTransactionType'
The insurance option selected by the buyer.
RequiredInput: No # Argument: 'ns:InsuranceSelectedCodeType'
Unique ID for the item associated with the checkout. A transaction is uniquely identified by one of two means: (a) You provide a TransactionID and ItemID. (This is the preferred approach.), OR, (b) You provide a BuyerID and ItemID and eBay identifies only one transaction for that combination (an error is returned if there are multiple transactions for that combination). Note: If all three are provided (that is, BuyerID, ItemID and TransactionID), BuyerID is ignored.
MaxLength: 19 (Note: The eBay database specifies 38. Currently, Item IDs are usually 9 to 12 digits)
RequiredInput: Yes # Argument: 'ns:ItemIDType'
Not supported.
RequiredInput: No # Argument: 'xs:string'
Unique ID for a multi-item order. If specified, ItemID and TransactionID are ignored if specified in the same call. Changes to the checkout status are applied to the specified order as a whole (and thus the child transactions associated with the order).
RequiredInput: No # Argument: 'xs:string'
Payment method used by the buyer. Required if CheckoutStatus is Complete. (Please note that only PayPal can set this value to PayPal.) <br> <span class="tablenote"><b>Note:</b> Required or allowed payment methods vary by site and category. Refer to <a href="http://developer.ebay.com/DevZone/XML/docs/WebHelp/wwhelp/wwhimpl/js/html/wwhelp.htm?context=eBay_XML_API&topic=PaymentMethodDifferences"> Payment Method Differences (PaymentMethod)</a> in the eBay Trading API Guide for information to help you determine which payment methods you are required or allowed to specify. </span><br> <br>
AllValuesExcept: PayPal
RequiredInput: Conditionally # Argument: 'ns:BuyerPaymentMethodCodeType'
Not supported.
RequiredInput: No # Argument: 'ns:RCSPaymentStatusCodeType'
Amount of money paid for sales tax. For Third-Party Checkout applications.
RequiredInput: No # Argument: 'ns:AmountType'
For internal use.
RequiredInput: No # Argument: 'ns:AddressType'
Amount of money paid for shipping. For Third-party Checkout applications.
RequiredInput: No # Argument: 'ns:AmountType'
An indicator of whether shipping costs were included in the taxable amount. For Third-Party Checkout applications.
Default: false
RequiredInput: No # Argument: 'xs:boolean'
Amount of money paid for insurance. For Third Party Checkout applications.
RequiredInput: No # Argument: 'ns:AmountType'
The shipping service selected by the buyer from among the shipping services offered by the seller (such as UPS Ground). For a list of valid values that you can cache for future use, call GeteBayDetails with DetailName set to ShippingServiceDetails.
RequiredInput: No # Argument: 'xs:token'
Unique ID for the transaction associated with the checkout. For Chinese auctions, the value passed in the TransactionID argument must be 0 or the call will fail with an error. For all other auction types, TransactionID accepts the actual, nonzero transaction ID. Call GetItemTransactionsCall or GetSellerTransactionsCall to determine the correct transaction ID. A transaction is uniquely identified by one of two means: (a) You provide a TransactionID and ItemID. (This is the preferred approach.), OR, (b) You provide a BuyerID and ItemID and eBay identifies only one transaction for that combination (an error is returned if there are multiple transactions for that combination). Note: If all three are provided (that is, BuyerID, ItemID and TransactionID), BuyerID is ignored.
MaxLength: 19 (Note: The eBay database specifies 38. Currently, transaction IDs are usually 9 to 12 digits.)
RequiredInput: Conditionally # Argument: 'xs:string'
| eBay-API documentation | Contained in the eBay-API distribution. |
#!/usr/bin/perl package eBay::API::XML::Call::ReviseCheckoutStatus; use strict; use warnings; ########################################################################## # # Module: ............... <user defined location>eBay/API/XML # File: ................. ReviseCheckoutStatus.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::ReviseCheckoutStatus::ReviseCheckoutStatusRequestType; use eBay::API::XML::Call::ReviseCheckoutStatus::ReviseCheckoutStatusResponseType;
sub getApiCallName { return 'ReviseCheckoutStatus'; } sub getRequestDataTypeFullPackage { return 'eBay::API::XML::Call::ReviseCheckoutStatus::ReviseCheckoutStatusRequestType'; } sub getResponseDataTypeFullPackage { return 'eBay::API::XML::Call::ReviseCheckoutStatus::ReviseCheckoutStatusResponseType'; } # # input properties #
sub setAdjustmentAmount { my $self = shift; my $pAdjustmentAmount = shift; $self->getRequestDataType()->setAdjustmentAmount($pAdjustmentAmount); }
sub setAmountPaid { my $self = shift; my $pAmountPaid = shift; $self->getRequestDataType()->setAmountPaid($pAmountPaid); }
sub setBuyerID { my $self = shift; my $sBuyerID = shift; $self->getRequestDataType()->setBuyerID($sBuyerID); }
sub setCODCost { my $self = shift; my $pCODCost = shift; $self->getRequestDataType()->setCODCost($pCODCost); }
sub setCheckoutMethod { my $self = shift; my $sCheckoutMethod = shift; $self->getRequestDataType()->setCheckoutMethod($sCheckoutMethod); }
sub setCheckoutStatus { my $self = shift; my $sCheckoutStatus = shift; $self->getRequestDataType()->setCheckoutStatus($sCheckoutStatus); }
sub setEncryptedID { my $self = shift; my $sEncryptedID = shift; $self->getRequestDataType()->setEncryptedID($sEncryptedID); }
sub setExternalTransaction { my $self = shift; my $pExternalTransaction = shift; $self->getRequestDataType()->setExternalTransaction($pExternalTransaction); }
sub setInsuranceType { my $self = shift; my $sInsuranceType = shift; $self->getRequestDataType()->setInsuranceType($sInsuranceType); }
sub setItemID { my $self = shift; my $pItemID = shift; $self->getRequestDataType()->setItemID($pItemID); }
sub setMultipleSellerPaymentID { my $self = shift; my $sMultipleSellerPaymentID = shift; $self->getRequestDataType()->setMultipleSellerPaymentID($sMultipleSellerPaymentID); }
sub setOrderID { my $self = shift; my $sOrderID = shift; $self->getRequestDataType()->setOrderID($sOrderID); }
sub setPaymentMethodUsed { my $self = shift; my $sPaymentMethodUsed = shift; $self->getRequestDataType()->setPaymentMethodUsed($sPaymentMethodUsed); }
sub setPaymentStatus { my $self = shift; my $sPaymentStatus = shift; $self->getRequestDataType()->setPaymentStatus($sPaymentStatus); }
sub setSalesTax { my $self = shift; my $pSalesTax = shift; $self->getRequestDataType()->setSalesTax($pSalesTax); }
sub setShippingAddress { my $self = shift; my $pShippingAddress = shift; $self->getRequestDataType()->setShippingAddress($pShippingAddress); }
sub setShippingCost { my $self = shift; my $pShippingCost = shift; $self->getRequestDataType()->setShippingCost($pShippingCost); }
sub setShippingIncludedInTax { my $self = shift; my $sShippingIncludedInTax = shift; $self->getRequestDataType()->setShippingIncludedInTax($sShippingIncludedInTax); }
sub setShippingInsuranceCost { my $self = shift; my $pShippingInsuranceCost = shift; $self->getRequestDataType()->setShippingInsuranceCost($pShippingInsuranceCost); }
sub setShippingService { my $self = shift; my $sShippingService = shift; $self->getRequestDataType()->setShippingService($sShippingService); }
sub setTransactionID { my $self = shift; my $sTransactionID = shift; $self->getRequestDataType()->setTransactionID($sTransactionID); } # # output properties # 1;