pub struct GetMessageEventResponse {
pub overview: Option<Box<GetMessageEventResponseOverview>>,
pub messages: Option<Vec<GetMessageEventResponseMessage>>,
pub clicks: Option<Vec<GetMessageEventResponseClick>>,
}Expand description
GetMessageEventResponse : Statistics about how users interact with narrowcast messages or broadcast messages sent from your LINE Official Account.
Fields§
§overview: Option<Box<GetMessageEventResponseOverview>>§messages: Option<Vec<GetMessageEventResponseMessage>>Array of information about individual message bubbles.
clicks: Option<Vec<GetMessageEventResponseClick>>Array of information about opened URLs in the message.
Implementations§
Source§impl GetMessageEventResponse
impl GetMessageEventResponse
Sourcepub fn new() -> GetMessageEventResponse
pub fn new() -> GetMessageEventResponse
Statistics about how users interact with narrowcast messages or broadcast messages sent from your LINE Official Account.
Trait Implementations§
Source§impl Clone for GetMessageEventResponse
impl Clone for GetMessageEventResponse
Source§fn clone(&self) -> GetMessageEventResponse
fn clone(&self) -> GetMessageEventResponse
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 GetMessageEventResponse
impl Debug for GetMessageEventResponse
Source§impl Default for GetMessageEventResponse
impl Default for GetMessageEventResponse
Source§fn default() -> GetMessageEventResponse
fn default() -> GetMessageEventResponse
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetMessageEventResponse
impl<'de> Deserialize<'de> for GetMessageEventResponse
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 GetMessageEventResponse
impl PartialEq for GetMessageEventResponse
Source§impl Serialize for GetMessageEventResponse
impl Serialize for GetMessageEventResponse
impl StructuralPartialEq for GetMessageEventResponse
Auto Trait Implementations§
impl Freeze for GetMessageEventResponse
impl RefUnwindSafe for GetMessageEventResponse
impl Send for GetMessageEventResponse
impl Sync for GetMessageEventResponse
impl Unpin for GetMessageEventResponse
impl UnwindSafe for GetMessageEventResponse
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