[][src]Struct google_androidpublisher2::ProductPurchase

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

order_id: Option<String>

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

consumption_state: Option<i32>

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

  • Yet to be consumed
  • Consumed
kind: Option<String>

This kind represents an inappPurchase object in the androidpublisher service.

purchase_time_millis: Option<String>

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

developer_payload: Option<String>

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

purchase_state: Option<i32>

The purchase state of the order. Possible values are:

  • Purchased
  • Canceled
  • Pending
purchase_type: Option<i32>

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)
  • Rewarded (i.e. from watching a video ad instead of paying)

Trait Implementations

impl Clone for ProductPurchase[src]

impl Debug for ProductPurchase[src]

impl Default for ProductPurchase[src]

impl<'de> Deserialize<'de> for ProductPurchase[src]

impl ResponseResult for ProductPurchase[src]

impl Serialize for ProductPurchase[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T> Typeable for T where
    T: Any