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>,
}Expand description
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).
- get inappproducts (response)
- insert inappproducts (request|response)
- patch inappproducts (request|response)
- update inappproducts (request|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§
Source§impl Clone for InAppProduct
impl Clone for InAppProduct
Source§fn clone(&self) -> InAppProduct
fn clone(&self) -> InAppProduct
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more