pub struct ProductPurchase {
pub consumption_state: Option<i32>,
pub developer_payload: Option<String>,
pub kind: Option<String>,
pub order_id: Option<String>,
pub purchase_state: Option<i32>,
pub purchase_time_millis: Option<i64>,
pub purchase_type: Option<i32>,
}Expand description
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).
- products get purchases (response)
Fields§
§consumption_state: Option<i32>The consumption state of the inapp product. Possible values are:
- Yet to be consumed
- Consumed
developer_payload: Option<String>A developer-specified string that contains supplemental information about an order.
kind: Option<String>This kind represents an inappPurchase object in the androidpublisher service.
order_id: Option<String>The order id associated with the purchase of the inapp product.
purchase_state: Option<i32>The purchase state of the order. Possible values are:
- Purchased
- Canceled
- Pending
purchase_time_millis: Option<i64>The time the product was purchased, in milliseconds since the epoch (Jan 1, 1970).
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§
Source§impl Clone for ProductPurchase
impl Clone for ProductPurchase
Source§fn clone(&self) -> ProductPurchase
fn clone(&self) -> ProductPurchase
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more