AdSense Management API . payments

Instance Methods

close()

Close httplib2 connections.

list()

List the payments for this AdSense account.

Method Details

close()
Close httplib2 connections.
list()
List the payments for this AdSense account.

Args:

Returns:
  An object of the form:

    {
  "items": [ # The list of Payments for the account. One or both of a) the account's most recent payment; and b) the account's upcoming payment.
    {
      "id": "A String", # Unique identifier of this Payment.
      "kind": "adsense#payment", # Kind of resource this is, in this case adsense#payment.
      "paymentAmount": "A String", # The amount to be paid.
      "paymentAmountCurrencyCode": "A String", # The currency code for the amount to be paid.
      "paymentDate": "A String", # The date this payment was/will be credited to the user, or none if the payment threshold has not been met.
    },
  ],
  "kind": "adsense#payments", # Kind of list this is, in this case adsense#payments.
}