Struct libstripe::ProductsParam
[−]
[src]
pub struct ProductsParam<'a> {
pub id: Option<&'a str>,
pub name: Option<&'a str>,
pub product_type: Option<ProductType>,
pub active: Option<bool>,
pub attributes: Option<Vec<&'a str>>,
pub caption: Option<&'a str>,
pub deactivate_on: Option<Vec<&'a str>>,
pub description: Option<&'a str>,
pub images: Option<Vec<&'a str>>,
pub metadata: Option<HashMap<String, String>>,
pub package_dimensions: Option<PackageDimensions>,
pub shippable: Option<bool>,
pub url: Option<&'a str>,
}Fields
id: Option<&'a str>
name: Option<&'a str>
product_type: Option<ProductType>
active: Option<bool>
attributes: Option<Vec<&'a str>>
caption: Option<&'a str>
deactivate_on: Option<Vec<&'a str>>
description: Option<&'a str>
images: Option<Vec<&'a str>>
metadata: Option<HashMap<String, String>>
package_dimensions: Option<PackageDimensions>
shippable: Option<bool>
url: Option<&'a str>
Trait Implementations
impl<'a> Default for ProductsParam<'a>[src]
fn default() -> ProductsParam<'a>[src]
Returns the "default value" for a type. Read more