Struct google_androidpublisher3::ProductPurchase[][src]

pub struct ProductPurchase {
    pub order_id: Option<String>,
    pub consumption_state: Option<i32>,
    pub kind: Option<String>,
    pub purchase_time_millis: Option<String>,
    pub developer_payload: Option<String>,
    pub purchase_state: Option<i32>,
    pub purchase_type: Option<i32>,
}

A ProductPurchase resource indicates the status of a user's inapp product purchase.

Activities

This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).

Fields

The order id associated with the purchase of the inapp product.

The consumption state of the inapp product. Possible values are:

  • Yet to be consumed
  • Consumed

This kind represents an inappPurchase object in the androidpublisher service.

The time the product was purchased, in milliseconds since the epoch (Jan 1, 1970).

A developer-specified string that contains supplemental information about an order.

The purchase state of the order. Possible values are:

  • Purchased
  • Canceled

The type of purchase of the inapp product. This field is only set if this purchase was not made using the standard in-app billing flow. Possible values are:

  • Test (i.e. purchased from a license testing account)
  • Promo (i.e. purchased using a promo code)

Trait Implementations

impl Default for ProductPurchase
[src]

Returns the "default value" for a type. Read more

impl Clone for ProductPurchase
[src]

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

impl Debug for ProductPurchase
[src]

Formats the value using the given formatter. Read more

impl ResponseResult for ProductPurchase
[src]

Auto Trait Implementations