pub struct DeleteNotificationsRequest {
pub template_id: String,
pub deletion_reason: DeletionReason,
}Expand description
DeleteNotificationsRequest : The request for the deleteNotifications operation.
Fields§
§template_id: StringThe unique identifier of the notification template you used to onboard your application.
deletion_reason: DeletionReasonThe unique identifier that maps each notification status to a reason code.
Implementations§
Source§impl DeleteNotificationsRequest
impl DeleteNotificationsRequest
Sourcepub fn new(
template_id: String,
deletion_reason: DeletionReason,
) -> DeleteNotificationsRequest
pub fn new( template_id: String, deletion_reason: DeletionReason, ) -> DeleteNotificationsRequest
The request for the deleteNotifications operation.
Trait Implementations§
Source§impl Clone for DeleteNotificationsRequest
impl Clone for DeleteNotificationsRequest
Source§fn clone(&self) -> DeleteNotificationsRequest
fn clone(&self) -> DeleteNotificationsRequest
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 DeleteNotificationsRequest
impl Debug for DeleteNotificationsRequest
Source§impl Default for DeleteNotificationsRequest
impl Default for DeleteNotificationsRequest
Source§fn default() -> DeleteNotificationsRequest
fn default() -> DeleteNotificationsRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for DeleteNotificationsRequest
impl<'de> Deserialize<'de> for DeleteNotificationsRequest
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 StructuralPartialEq for DeleteNotificationsRequest
Auto Trait Implementations§
impl Freeze for DeleteNotificationsRequest
impl RefUnwindSafe for DeleteNotificationsRequest
impl Send for DeleteNotificationsRequest
impl Sync for DeleteNotificationsRequest
impl Unpin for DeleteNotificationsRequest
impl UnsafeUnpin for DeleteNotificationsRequest
impl UnwindSafe for DeleteNotificationsRequest
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