pub struct WebhookLiveCallIncoming {
pub created_at: u64,
pub id: String,
pub data: WebhookLiveCallIncomingData,
pub object: Option<String>,
}Available on crate feature
webhook-types only.Expand description
Sent when an incoming API SIP session is available for Live acceptance. The
same pending session can also emit realtime.call.incoming; the first
successful Realtime or Live accept endpoint selects the runtime surface.
Fields§
§created_at: u64The Unix timestamp (in seconds) of when the event was created.
id: StringThe unique ID of the event.
data: WebhookLiveCallIncomingDataEvent data payload.
object: Option<String>The object of the event. Always event.
Trait Implementations§
Source§impl Clone for WebhookLiveCallIncoming
impl Clone for WebhookLiveCallIncoming
Source§fn clone(&self) -> WebhookLiveCallIncoming
fn clone(&self) -> WebhookLiveCallIncoming
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 Debug for WebhookLiveCallIncoming
impl Debug for WebhookLiveCallIncoming
Source§impl<'de> Deserialize<'de> for WebhookLiveCallIncoming
impl<'de> Deserialize<'de> for WebhookLiveCallIncoming
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 EventId for WebhookLiveCallIncoming
impl EventId for WebhookLiveCallIncoming
Source§impl EventType for WebhookLiveCallIncoming
impl EventType for WebhookLiveCallIncoming
Source§fn event_type(&self) -> &'static str
fn event_type(&self) -> &'static str
Available on crate feature
_api only.Returns the event type string (e.g., “batch.cancelled”)
Source§impl PartialEq for WebhookLiveCallIncoming
impl PartialEq for WebhookLiveCallIncoming
Source§impl Serialize for WebhookLiveCallIncoming
impl Serialize for WebhookLiveCallIncoming
impl StructuralPartialEq for WebhookLiveCallIncoming
Auto Trait Implementations§
impl Freeze for WebhookLiveCallIncoming
impl RefUnwindSafe for WebhookLiveCallIncoming
impl Send for WebhookLiveCallIncoming
impl Sync for WebhookLiveCallIncoming
impl Unpin for WebhookLiveCallIncoming
impl UnsafeUnpin for WebhookLiveCallIncoming
impl UnwindSafe for WebhookLiveCallIncoming
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