Struct google_content2::InventorySetRequest
source · pub struct InventorySetRequest {
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.
§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).
- set inventory (request)
Fields§
§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 reserved for sell-on-google ads. 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 Clone for InventorySetRequest
impl Clone for InventorySetRequest
source§fn clone(&self) -> InventorySetRequest
fn clone(&self) -> InventorySetRequest
1.0.0 · source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read moresource§impl Debug for InventorySetRequest
impl Debug for InventorySetRequest
source§impl Default for InventorySetRequest
impl Default for InventorySetRequest
source§fn default() -> InventorySetRequest
fn default() -> InventorySetRequest
source§impl Deserialize for InventorySetRequest
impl Deserialize for InventorySetRequest
source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer,
source§impl Serialize for InventorySetRequest
impl Serialize for InventorySetRequest
impl RequestValue for InventorySetRequest
Auto Trait Implementations§
impl Freeze for InventorySetRequest
impl RefUnwindSafe for InventorySetRequest
impl Send for InventorySetRequest
impl Sync for InventorySetRequest
impl Unpin for InventorySetRequest
impl UnwindSafe for InventorySetRequest
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