[−][src]Struct stripe::UpdateSku
The parameters for Sku::update.
Fields
active: Option<bool>Whether this SKU is available for purchase.
attributes: Option<Metadata>A dictionary of attributes and values for the attributes defined by the product.
When specified, attributes will partially update the existing attributes dictionary on the product, with the postcondition that a value must be present for each attribute key on the product.
currency: Option<Currency>Three-letter ISO currency code, in lowercase.
Must be a supported currency.
expand: &'a [&'a str]Specifies which fields in the response should be expanded.
image: Option<&'a str>The URL of an image for this SKU, meant to be displayable to the customer.
inventory: Option<Inventory>Description of the SKU's inventory.
metadata: Option<Metadata>A set of key-value pairs that you can attach to a SKU object.
It can be useful for storing additional information about the SKU in a structured format.
package_dimensions: Option<PackageDimensions>The dimensions of this SKU for shipping purposes.
price: Option<i64>The cost of the item as a positive integer in the smallest currency unit (that is, 100 cents to charge $1.00, or 100 to charge ¥100, Japanese Yen being a zero-decimal currency).
Methods
impl<'a> UpdateSku<'a>[src]
Trait Implementations
impl<'a> Clone for UpdateSku<'a>[src]
fn clone(&self) -> UpdateSku<'a>[src]
fn clone_from(&mut self, source: &Self)1.0.0[src]
Performs copy-assignment from source. Read more
impl<'a> Debug for UpdateSku<'a>[src]
impl<'a> Serialize for UpdateSku<'a>[src]
Auto Trait Implementations
Blanket Implementations
impl<T> ToOwned for T where
T: Clone, [src]
T: Clone,
type Owned = T
The resulting type after obtaining ownership.
fn to_owned(&self) -> T[src]
fn clone_into(&self, target: &mut T)[src]
impl<T, U> Into<U> for T where
U: From<T>, [src]
U: From<T>,
impl<T> From<T> for T[src]
impl<T, U> TryFrom<U> for T where
U: Into<T>, [src]
U: Into<T>,
type Error = Infallible
The type returned in the event of a conversion error.
fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>[src]
impl<T, U> TryInto<U> for T where
U: TryFrom<T>, [src]
U: TryFrom<T>,
type Error = <U as TryFrom<T>>::Error
The type returned in the event of a conversion error.
fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>[src]
impl<T> BorrowMut<T> for T where
T: ?Sized, [src]
T: ?Sized,
fn borrow_mut(&mut self) -> &mut T[src]
impl<T> Borrow<T> for T where
T: ?Sized, [src]
T: ?Sized,
impl<T> Any for T where
T: 'static + ?Sized, [src]
T: 'static + ?Sized,
impl<T> Erased for T
impl<T, U> TryInto<U> for T where
U: TryFrom<T>,
U: TryFrom<T>,
impl<T> Same<T> for T
type Output = T
Should always be Self