pub struct DeleteOneTimeProductRequest {
pub latency_tolerance: Option<String>,
pub package_name: Option<String>,
pub product_id: Option<String>,
}Expand description
Request message for deleting a one-time product.
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 one-time product to delete.
product_id: Option<String>Required. The one-time product ID of the one-time product to delete.
Trait Implementations§
Source§impl Clone for DeleteOneTimeProductRequest
impl Clone for DeleteOneTimeProductRequest
Source§fn clone(&self) -> DeleteOneTimeProductRequest
fn clone(&self) -> DeleteOneTimeProductRequest
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 Debug for DeleteOneTimeProductRequest
impl Debug for DeleteOneTimeProductRequest
Source§impl Default for DeleteOneTimeProductRequest
impl Default for DeleteOneTimeProductRequest
Source§fn default() -> DeleteOneTimeProductRequest
fn default() -> DeleteOneTimeProductRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteOneTimeProductRequest
impl<'de> Deserialize<'de> for DeleteOneTimeProductRequest
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 DeleteOneTimeProductRequest
Auto Trait Implementations§
impl Freeze for DeleteOneTimeProductRequest
impl RefUnwindSafe for DeleteOneTimeProductRequest
impl Send for DeleteOneTimeProductRequest
impl Sync for DeleteOneTimeProductRequest
impl Unpin for DeleteOneTimeProductRequest
impl UnwindSafe for DeleteOneTimeProductRequest
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