pub struct InappproductsDeleteRequest {
pub latency_tolerance: Option<String>,
pub package_name: Option<String>,
pub sku: Option<String>,
}Expand description
Request to delete an in-app 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>Package name of the app.
sku: Option<String>Unique identifier for the in-app product.
Trait Implementations§
Source§impl Clone for InappproductsDeleteRequest
impl Clone for InappproductsDeleteRequest
Source§fn clone(&self) -> InappproductsDeleteRequest
fn clone(&self) -> InappproductsDeleteRequest
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 InappproductsDeleteRequest
impl Debug for InappproductsDeleteRequest
Source§impl Default for InappproductsDeleteRequest
impl Default for InappproductsDeleteRequest
Source§fn default() -> InappproductsDeleteRequest
fn default() -> InappproductsDeleteRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InappproductsDeleteRequest
impl<'de> Deserialize<'de> for InappproductsDeleteRequest
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 InappproductsDeleteRequest
Auto Trait Implementations§
impl Freeze for InappproductsDeleteRequest
impl RefUnwindSafe for InappproductsDeleteRequest
impl Send for InappproductsDeleteRequest
impl Sync for InappproductsDeleteRequest
impl Unpin for InappproductsDeleteRequest
impl UnwindSafe for InappproductsDeleteRequest
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