pub struct InappproductsBatchDeleteRequest {
pub requests: Option<Vec<InappproductsDeleteRequest>>,
}Expand description
Request to delete multiple in-app products.
§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).
- batch delete inappproducts (request)
Fields§
§requests: Option<Vec<InappproductsDeleteRequest>>Individual delete requests. At least one request is required. Can contain up to 100 requests. All requests must correspond to different in-app products.
Trait Implementations§
Source§impl Clone for InappproductsBatchDeleteRequest
impl Clone for InappproductsBatchDeleteRequest
Source§fn clone(&self) -> InappproductsBatchDeleteRequest
fn clone(&self) -> InappproductsBatchDeleteRequest
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 InappproductsBatchDeleteRequest
impl Default for InappproductsBatchDeleteRequest
Source§fn default() -> InappproductsBatchDeleteRequest
fn default() -> InappproductsBatchDeleteRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for InappproductsBatchDeleteRequest
impl<'de> Deserialize<'de> for InappproductsBatchDeleteRequest
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 RequestValue for InappproductsBatchDeleteRequest
Auto Trait Implementations§
impl Freeze for InappproductsBatchDeleteRequest
impl RefUnwindSafe for InappproductsBatchDeleteRequest
impl Send for InappproductsBatchDeleteRequest
impl Sync for InappproductsBatchDeleteRequest
impl Unpin for InappproductsBatchDeleteRequest
impl UnsafeUnpin for InappproductsBatchDeleteRequest
impl UnwindSafe for InappproductsBatchDeleteRequest
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