pub struct GetNotificationHistoryRequestBody {
pub events: Option<EventsType>,
pub email: Option<String>,
pub app_id: Option<String>,
}Fields§
§events: Option<EventsType>-> "sent" - All the devices by player_id that were sent the specified notification_id. Notifications targeting under 1000 recipients will not have "sent" events recorded, but will show "clicked" events. "clicked" - All the devices by player_id that clicked the specified notification_id.
email: Option<String>The email address you would like the report sent.
app_id: Option<String>Implementations§
Trait Implementations§
Source§impl Clone for GetNotificationHistoryRequestBody
impl Clone for GetNotificationHistoryRequestBody
Source§fn clone(&self) -> GetNotificationHistoryRequestBody
fn clone(&self) -> GetNotificationHistoryRequestBody
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 Default for GetNotificationHistoryRequestBody
impl Default for GetNotificationHistoryRequestBody
Source§fn default() -> GetNotificationHistoryRequestBody
fn default() -> GetNotificationHistoryRequestBody
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetNotificationHistoryRequestBody
impl<'de> Deserialize<'de> for GetNotificationHistoryRequestBody
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
Source§impl PartialEq for GetNotificationHistoryRequestBody
impl PartialEq for GetNotificationHistoryRequestBody
Source§fn eq(&self, other: &GetNotificationHistoryRequestBody) -> bool
fn eq(&self, other: &GetNotificationHistoryRequestBody) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for GetNotificationHistoryRequestBody
Auto Trait Implementations§
impl Freeze for GetNotificationHistoryRequestBody
impl RefUnwindSafe for GetNotificationHistoryRequestBody
impl Send for GetNotificationHistoryRequestBody
impl Sync for GetNotificationHistoryRequestBody
impl Unpin for GetNotificationHistoryRequestBody
impl UnwindSafe for GetNotificationHistoryRequestBody
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