pub struct WebhookPayloadMessageConversation {
pub id: String,
pub platform_conversation_id: String,
pub participant_id: Option<String>,
pub participant_name: Option<String>,
pub participant_username: Option<String>,
pub participant_picture: Option<String>,
pub status: Status,
}Fields§
§id: String§platform_conversation_id: String§participant_id: Option<String>§participant_name: Option<String>§participant_username: Option<String>§participant_picture: Option<String>§status: StatusImplementations§
Trait Implementations§
Source§impl Clone for WebhookPayloadMessageConversation
impl Clone for WebhookPayloadMessageConversation
Source§fn clone(&self) -> WebhookPayloadMessageConversation
fn clone(&self) -> WebhookPayloadMessageConversation
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 WebhookPayloadMessageConversation
impl Default for WebhookPayloadMessageConversation
Source§fn default() -> WebhookPayloadMessageConversation
fn default() -> WebhookPayloadMessageConversation
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookPayloadMessageConversation
impl<'de> Deserialize<'de> for WebhookPayloadMessageConversation
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 WebhookPayloadMessageConversation
impl PartialEq for WebhookPayloadMessageConversation
Source§fn eq(&self, other: &WebhookPayloadMessageConversation) -> bool
fn eq(&self, other: &WebhookPayloadMessageConversation) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebhookPayloadMessageConversation
Auto Trait Implementations§
impl Freeze for WebhookPayloadMessageConversation
impl RefUnwindSafe for WebhookPayloadMessageConversation
impl Send for WebhookPayloadMessageConversation
impl Sync for WebhookPayloadMessageConversation
impl Unpin for WebhookPayloadMessageConversation
impl UnsafeUnpin for WebhookPayloadMessageConversation
impl UnwindSafe for WebhookPayloadMessageConversation
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