com.google.checkout.checkout
Class UrlParameterType

java.lang.Object
  extended by com.google.checkout.checkout.UrlParameterType

public class UrlParameterType
extends java.lang.Object

This class represents a parameter type on a URL as used by the CheckoutShoppingCartRequest clas s for 3rd party conversion tracking purposes.

Author:
simonjsmith@google.com See http://code.google.com/apis/checkout/developer/checkout_pixel_tracking.html For additional information on third party tracking
See Also:
CheckoutShoppingCartRequest

Field Summary
static UrlParameterType billingCity
          The city associated with the order's billing address.
static UrlParameterType billingCountryCode
          The two-letter ISO 3166 country code associated with the order's billing address.
static UrlParameterType billingPostalCode
          The five-digit U.S.
static UrlParameterType billingRegion
          The U.S.
static UrlParameterType buyerID
          A Google-assigned value that uniquely identifies a customer email address.
static UrlParameterType couponAmount
          The total amount of all coupons factored into the order total.
static UrlParameterType OrderID
          A Google-assigned value that uniquely identifies an order.
static UrlParameterType orderSubTotal
          The total cost for all of the items in the order including coupons and discounts but excluding taxes and shipping charges.
static UrlParameterType orderSubTotalPlusShipping
          The total cost for all of the items in the order, including shipping charges, coupons and discounts, but excluding taxes.
static UrlParameterType orderSubTotalPlusTax
          The total cost for all of the items in the order, including taxes, coupons and discounts, but excluding shipping charges.
static UrlParameterType orderTotal
          The total cost for all of the items in the order, including taxes, shipping charges, coupons and discounts.
static UrlParameterType shippingAmount
          The shipping cost associated with an order.
static UrlParameterType shippingCity
          The city associated with the order's shipping address.
static UrlParameterType shippingCountryCode
          The two-letter ISO 3166 country code associated with the order's shipping address.
static UrlParameterType shippingPostalCode
          The five-digit U.S.
static UrlParameterType shippingRegion
          The U.S.
static UrlParameterType taxAmount
          The total amount of taxes charged for an order.
 
Method Summary
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Field Detail

OrderID

public static UrlParameterType OrderID
A Google-assigned value that uniquely identifies an order. This value is displayed in the Merchant Center for each order. If you have implemented the Notification API, you will also see this value in all Google Checkout notifications.


billingCity

public static UrlParameterType billingCity
The city associated with the order's billing address.


billingCountryCode

public static UrlParameterType billingCountryCode
The two-letter ISO 3166 country code associated with the order's billing address.


billingPostalCode

public static UrlParameterType billingPostalCode
The five-digit U.S. zip code associated with the order's billing address.


billingRegion

public static UrlParameterType billingRegion
The U.S. state associated with the order's billing address.


buyerID

public static UrlParameterType buyerID
A Google-assigned value that uniquely identifies a customer email address.


couponAmount

public static UrlParameterType couponAmount
The total amount of all coupons factored into the order total.


orderSubTotal

public static UrlParameterType orderSubTotal
The total cost for all of the items in the order including coupons and discounts but excluding taxes and shipping charges.


orderSubTotalPlusShipping

public static UrlParameterType orderSubTotalPlusShipping
The total cost for all of the items in the order, including shipping charges, coupons and discounts, but excluding taxes.


orderSubTotalPlusTax

public static UrlParameterType orderSubTotalPlusTax
The total cost for all of the items in the order, including taxes, coupons and discounts, but excluding shipping charges.


orderTotal

public static UrlParameterType orderTotal
The total cost for all of the items in the order, including taxes, shipping charges, coupons and discounts.


shippingAmount

public static UrlParameterType shippingAmount
The shipping cost associated with an order.


shippingCity

public static UrlParameterType shippingCity
The city associated with the order's shipping address.


shippingCountryCode

public static UrlParameterType shippingCountryCode
The two-letter ISO 3166 country code associated with the order's shipping address.


shippingPostalCode

public static UrlParameterType shippingPostalCode
The five-digit U.S. zip code associated with the order's shipping address.


shippingRegion

public static UrlParameterType shippingRegion
The U.S. state associated with the order's shipping address.


taxAmount

public static UrlParameterType taxAmount
The total amount of taxes charged for an order.

Method Detail

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object