pub struct WebhookPayloadMessageMetadataStoryReply {
pub story_id: String,
pub story_url: Option<String>,
}Expand description
WebhookPayloadMessageMetadataStoryReply : Instagram only. Populated when an IG user replies to one of the account’s stories (Meta messaging_story_replies). Mutually exclusive in practice with isStoryMention.
Fields§
§story_id: StringThe Instagram story ID the user replied to.
story_url: Option<String>Meta CDN URL for the story media. Expires approximately 24 hours after the story posted; consumers must fetch promptly or treat 404s as expected.
Implementations§
Source§impl WebhookPayloadMessageMetadataStoryReply
impl WebhookPayloadMessageMetadataStoryReply
Sourcepub fn new(story_id: String) -> WebhookPayloadMessageMetadataStoryReply
pub fn new(story_id: String) -> WebhookPayloadMessageMetadataStoryReply
Instagram only. Populated when an IG user replies to one of the account’s stories (Meta messaging_story_replies). Mutually exclusive in practice with isStoryMention.
Trait Implementations§
Source§impl Clone for WebhookPayloadMessageMetadataStoryReply
impl Clone for WebhookPayloadMessageMetadataStoryReply
Source§fn clone(&self) -> WebhookPayloadMessageMetadataStoryReply
fn clone(&self) -> WebhookPayloadMessageMetadataStoryReply
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · 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 WebhookPayloadMessageMetadataStoryReply
impl Default for WebhookPayloadMessageMetadataStoryReply
Source§fn default() -> WebhookPayloadMessageMetadataStoryReply
fn default() -> WebhookPayloadMessageMetadataStoryReply
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for WebhookPayloadMessageMetadataStoryReply
impl<'de> Deserialize<'de> for WebhookPayloadMessageMetadataStoryReply
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 WebhookPayloadMessageMetadataStoryReply
impl PartialEq for WebhookPayloadMessageMetadataStoryReply
Source§fn eq(&self, other: &WebhookPayloadMessageMetadataStoryReply) -> bool
fn eq(&self, other: &WebhookPayloadMessageMetadataStoryReply) -> bool
Tests for
self and other values to be equal, and is used by ==.impl StructuralPartialEq for WebhookPayloadMessageMetadataStoryReply
Auto Trait Implementations§
impl Freeze for WebhookPayloadMessageMetadataStoryReply
impl RefUnwindSafe for WebhookPayloadMessageMetadataStoryReply
impl Send for WebhookPayloadMessageMetadataStoryReply
impl Sync for WebhookPayloadMessageMetadataStoryReply
impl Unpin for WebhookPayloadMessageMetadataStoryReply
impl UnsafeUnpin for WebhookPayloadMessageMetadataStoryReply
impl UnwindSafe for WebhookPayloadMessageMetadataStoryReply
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