pub struct DeactivatePurchaseOptionRequest {
pub latency_tolerance: Option<String>,
pub package_name: Option<String>,
pub product_id: Option<String>,
pub purchase_option_id: Option<String>,
}Expand description
Request message for UpdatePurchaseOptionState.
This type is not used in any activity, and only used as part of another schema.
Fields§
§latency_tolerance: Option<String>Optional. The latency tolerance for the propagation of this product update. Defaults to latency-sensitive.
package_name: Option<String>Required. The parent app (package name) of the purchase option to deactivate.
product_id: Option<String>Required. The parent one-time product (ID) of the purchase option to deactivate.
purchase_option_id: Option<String>Required. The purchase option ID of the purchase option to deactivate.
Trait Implementations§
Source§impl Clone for DeactivatePurchaseOptionRequest
impl Clone for DeactivatePurchaseOptionRequest
Source§fn clone(&self) -> DeactivatePurchaseOptionRequest
fn clone(&self) -> DeactivatePurchaseOptionRequest
Returns a duplicate of the value. Read more
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreSource§impl Default for DeactivatePurchaseOptionRequest
impl Default for DeactivatePurchaseOptionRequest
Source§fn default() -> DeactivatePurchaseOptionRequest
fn default() -> DeactivatePurchaseOptionRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeactivatePurchaseOptionRequest
impl<'de> Deserialize<'de> for DeactivatePurchaseOptionRequest
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>,
Deserialize this value from the given Serde deserializer. Read more
impl Part for DeactivatePurchaseOptionRequest
Auto Trait Implementations§
impl Freeze for DeactivatePurchaseOptionRequest
impl RefUnwindSafe for DeactivatePurchaseOptionRequest
impl Send for DeactivatePurchaseOptionRequest
impl Sync for DeactivatePurchaseOptionRequest
impl Unpin for DeactivatePurchaseOptionRequest
impl UnwindSafe for DeactivatePurchaseOptionRequest
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
Mutably borrows from an owned value. Read more