pub struct CallDataDTO {
pub to: Option<String>,
pub from_: Option<String>,
pub status: Option<String>,
}Available on crate feature
conversations only.Expand description
CallDataDTO from the GoHighLevel OpenAPI spec.
Fields§
§to: Option<String>Phone number of the receiver
from_: Option<String>Phone number of the dialer
status: Option<String>Call status
Allowed values: pending, completed, answered, busy, no-answer, failed,
canceled, voicemail.
Trait Implementations§
Source§impl Clone for CallDataDTO
impl Clone for CallDataDTO
Source§fn clone(&self) -> CallDataDTO
fn clone(&self) -> CallDataDTO
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 CallDataDTO
impl Debug for CallDataDTO
Source§impl Default for CallDataDTO
impl Default for CallDataDTO
Source§fn default() -> CallDataDTO
fn default() -> CallDataDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CallDataDTO
impl<'de> Deserialize<'de> for CallDataDTO
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
Auto Trait Implementations§
impl Freeze for CallDataDTO
impl RefUnwindSafe for CallDataDTO
impl Send for CallDataDTO
impl Sync for CallDataDTO
impl Unpin for CallDataDTO
impl UnsafeUnpin for CallDataDTO
impl UnwindSafe for CallDataDTO
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