pub struct CreateNotificationRequest {
pub template_id: String,
pub notification_parameters: HashMap<String, Value>,
pub marketplace_id: Option<String>,
}Expand description
CreateNotificationRequest : The request for the createNotification operation.
Fields§
§template_id: StringThe unique identifier of the notification template you used to onboard your application.
notification_parameters: HashMap<String, Value>The dynamic parameters required by the notification templated specified by templateId.
marketplace_id: Option<String>An encrypted marketplace identifier for the posted notification.
Implementations§
Trait Implementations§
Source§impl Clone for CreateNotificationRequest
impl Clone for CreateNotificationRequest
Source§fn clone(&self) -> CreateNotificationRequest
fn clone(&self) -> CreateNotificationRequest
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 CreateNotificationRequest
impl Debug for CreateNotificationRequest
Source§impl Default for CreateNotificationRequest
impl Default for CreateNotificationRequest
Source§fn default() -> CreateNotificationRequest
fn default() -> CreateNotificationRequest
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateNotificationRequest
impl<'de> Deserialize<'de> for CreateNotificationRequest
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 CreateNotificationRequest
Auto Trait Implementations§
impl Freeze for CreateNotificationRequest
impl RefUnwindSafe for CreateNotificationRequest
impl Send for CreateNotificationRequest
impl Sync for CreateNotificationRequest
impl Unpin for CreateNotificationRequest
impl UnsafeUnpin for CreateNotificationRequest
impl UnwindSafe for CreateNotificationRequest
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