Struct google_androidpublisher2::api::InAppProduct[][src]

pub struct InAppProduct {
    pub default_language: Option<String>,
    pub default_price: Option<Price>,
    pub grace_period: Option<String>,
    pub listings: Option<HashMap<String, InAppProductListing>>,
    pub package_name: Option<String>,
    pub prices: Option<HashMap<String, Price>>,
    pub purchase_type: Option<String>,
    pub sku: Option<String>,
    pub status: Option<String>,
    pub subscription_period: Option<String>,
    pub trial_period: Option<String>,
}

There is no detailed description.

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

default_language: Option<String>

The default language of the localized data, as defined by BCP 47. e.g. "en-US", "en-GB".

default_price: Option<Price>

Default price cannot be zero. In-app products can never be free. Default price is always in the developer's Checkout merchant currency.

grace_period: Option<String>

Grace period of the subscription, specified in ISO 8601 format. It will allow developers to give their subscribers a grace period when the payment for the new recurrence period is declined. Acceptable values = "P3D" (three days), "P7D" (seven days), "P14D" (fourteen days), and "P30D" (thirty days)

listings: Option<HashMap<String, InAppProductListing>>

List of localized title and description data.

package_name: Option<String>

The package name of the parent app.

prices: Option<HashMap<String, Price>>

Prices per buyer region. None of these prices should be zero. In-app products can never be free.

purchase_type: Option<String>

Purchase type enum value. Unmodifiable after creation.

sku: Option<String>

The stock-keeping-unit (SKU) of the product, unique within an app.

status: Option<String>

no description provided

subscription_period: Option<String>

Subscription period, specified in ISO 8601 format. Acceptable values are "P1W" (one week), "P1M" (one month), "P3M" (three months), "P6M" (six months), and "P1Y" (one year).

trial_period: Option<String>

Trial period, specified in ISO 8601 format. Acceptable values are anything between "P7D" (seven days) and "P999D" (999 days). Seasonal subscriptions cannot have a trial period.

Trait Implementations

impl Clone for InAppProduct[src]

impl Debug for InAppProduct[src]

impl Default for InAppProduct[src]

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

impl RequestValue for InAppProduct[src]

impl Resource for InAppProduct[src]

impl ResponseResult for InAppProduct[src]

impl Serialize for InAppProduct[src]

Auto Trait Implementations

impl RefUnwindSafe for InAppProduct[src]

impl Send for InAppProduct[src]

impl Sync for InAppProduct[src]

impl Unpin for InAppProduct[src]

impl UnwindSafe for InAppProduct[src]

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> Instrument 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.