[][src]Struct google_androidpublisher2::VoidedPurchase

pub struct VoidedPurchase {
    pub kind: Option<String>,
    pub voided_time_millis: Option<String>,
    pub purchase_token: Option<String>,
    pub purchase_time_millis: Option<String>,
}

A VoidedPurchase resource indicates a purchase that was either canceled/refunded/charged-back.

This type is not used in any activity, and only used as part of another schema.

Fields

kind: Option<String>

This kind represents a voided purchase object in the androidpublisher service.

voided_time_millis: Option<String>

The time at which the purchase was canceled/refunded/charged-back, in milliseconds since the epoch (Jan 1, 1970).

purchase_token: Option<String>

The token which uniquely identifies a one-time purchase or subscription. To uniquely identify subscription renewals use order_id (available starting from version 3 of the API).

purchase_time_millis: Option<String>

The time at which the purchase was made, in milliseconds since the epoch (Jan 1, 1970).

Trait Implementations

impl Clone for VoidedPurchase[src]

impl Debug for VoidedPurchase[src]

impl Default for VoidedPurchase[src]

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

impl Part for VoidedPurchase[src]

impl Serialize for VoidedPurchase[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