Struct stripe::Sku[][src]

pub struct Sku {
    pub id: String,
    pub object: String,
    pub active: bool,
    pub attributes: Value,
    pub created: Timestamp,
    pub currency: Currency,
    pub image: Option<String>,
    pub inventory: Inventory,
    pub livemode: bool,
    pub metadata: Metadata,
    pub package_dimensions: Option<PackageDimensions>,
    pub price: u64,
    pub product: String,
    pub updated: Timestamp,
}

The resource representing a Stripe Sku.

For more details see https://stripe.com/docs/api#sku_object.

Fields

Trait Implementations

impl Debug for Sku
[src]

Formats the value using the given formatter. Read more

Auto Trait Implementations

impl Send for Sku

impl Sync for Sku