atg.payment.tax
Interface TaxRequestInfo

All Superinterfaces:
java.io.Serializable
All Known Implementing Classes:
TaxRequestInfoImpl

public interface TaxRequestInfo
extends java.io.Serializable

This class is an interface of Tax payment information. It represents all the information which designates a tax calculation process.


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Method Summary
 Address getBillingAddress()
          Returns the billing address of the purchaser
 Order getOrder()
          Return an Order object
 java.lang.String getOrderId()
          Returns the order id.
 ShippingDestination getShippingDestination(int i)
          Return a single shipping destination
 ShippingDestination[] getShippingDestinations()
          Returns the array of shipping destinations for the order
 java.lang.Object getUserData()
          Returns an object of type Object
 

Field Detail

CLASS_VERSION

static final java.lang.String CLASS_VERSION
Class version string

See Also:
Constant Field Values
Method Detail

getOrderId

java.lang.String getOrderId()
Returns the order id. This is a merchant-generated order reference or tracking number, unique for each order


getBillingAddress

Address getBillingAddress()
Returns the billing address of the purchaser


getShippingDestinations

ShippingDestination[] getShippingDestinations()
Returns the array of shipping destinations for the order


getShippingDestination

ShippingDestination getShippingDestination(int i)
Return a single shipping destination


getOrder

Order getOrder()
Return an Order object


getUserData

java.lang.Object getUserData()
Returns an object of type Object