Struct google_content2::Inventory
source · pub struct Inventory {
pub kind: Option<String>,
pub installment: Option<Installment>,
pub sale_price_effective_date: Option<String>,
pub price: Option<Price>,
pub sell_on_google_quantity: Option<u32>,
pub pickup: Option<InventoryPickup>,
pub sale_price: Option<Price>,
pub availability: Option<String>,
pub loyalty_points: Option<LoyaltyPoints>,
pub quantity: Option<u32>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§kind: Option<String>Identifies what kind of resource this is. Value: the fixed string “content#inventory”.
installment: Option<Installment>Number and amount of installments to pay for an item. Brazil only.
sale_price_effective_date: Option<String>A date range represented by a pair of ISO 8601 dates separated by a space, comma, or slash. Both dates might be specified as ‘null’ if undecided.
price: Option<Price>The price of the product.
sell_on_google_quantity: Option<u32>The quantity of the product that is available for selling on Google. Supported only for online products.
pickup: Option<InventoryPickup>Store pickup information. Only supported for local inventory. Not setting pickup means “don’t update” while setting it to the empty value ({} in JSON) means “delete”. Otherwise, pickupMethod and pickupSla must be set together, unless pickupMethod is “not supported”.
sale_price: Option<Price>The sale price of the product. Mandatory if sale_price_effective_date is defined.
availability: Option<String>The availability of the product.
loyalty_points: Option<LoyaltyPoints>Loyalty points that users receive after purchasing the item. Japan only.
quantity: Option<u32>The quantity of the product. Must be equal to or greater than zero. Supported only for local products.
Trait Implementations§
source§impl<'de> Deserialize<'de> for Inventory
impl<'de> Deserialize<'de> for Inventory
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
impl Part for Inventory
Auto Trait Implementations§
impl Freeze for Inventory
impl RefUnwindSafe for Inventory
impl Send for Inventory
impl Sync for Inventory
impl Unpin for Inventory
impl UnwindSafe for Inventory
Blanket Implementations§
source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
source§default unsafe fn clone_to_uninit(&self, dst: *mut T)
default unsafe fn clone_to_uninit(&self, dst: *mut T)
clone_to_uninit)source§impl<T> IntoEither for T
impl<T> IntoEither for T
source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left is true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read moresource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self into a Left variant of Either<Self, Self>
if into_left(&self) returns true.
Converts self into a Right variant of Either<Self, Self>
otherwise. Read more