pub struct WebhookRealtimeCallIncoming {
pub created_at: i64,
pub id: String,
pub data: WebhookRealtimeCallData,
pub object: Option<String>,
}Available on crate feature
webhook only.Expand description
Sent when Realtime API receives an incoming SIP call.
Fields§
§created_at: i64The Unix timestamp (in seconds) of when the model response was completed.
id: StringThe unique ID of the event.
data: WebhookRealtimeCallDataEvent data payload.
object: Option<String>The object of the event. Always event.
Trait Implementations§
Source§impl Clone for WebhookRealtimeCallIncoming
impl Clone for WebhookRealtimeCallIncoming
Source§fn clone(&self) -> WebhookRealtimeCallIncoming
fn clone(&self) -> WebhookRealtimeCallIncoming
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 WebhookRealtimeCallIncoming
impl Debug for WebhookRealtimeCallIncoming
Source§impl<'de> Deserialize<'de> for WebhookRealtimeCallIncoming
impl<'de> Deserialize<'de> for WebhookRealtimeCallIncoming
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 EventType for WebhookRealtimeCallIncoming
impl EventType for WebhookRealtimeCallIncoming
Source§fn event_type(&self) -> &'static str
fn event_type(&self) -> &'static str
Returns the event type string (e.g., “batch.cancelled”)
impl StructuralPartialEq for WebhookRealtimeCallIncoming
Auto Trait Implementations§
impl Freeze for WebhookRealtimeCallIncoming
impl RefUnwindSafe for WebhookRealtimeCallIncoming
impl Send for WebhookRealtimeCallIncoming
impl Sync for WebhookRealtimeCallIncoming
impl Unpin for WebhookRealtimeCallIncoming
impl UnwindSafe for WebhookRealtimeCallIncoming
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