pub struct CreatedByResponseDTO {
pub channel: Option<String>,
pub created_at: Option<String>,
pub source: Option<String>,
pub source_id: Option<String>,
}Available on crate feature
objects only.Expand description
CreatedByResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§channel: Option<String>Creation Channel Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>Created At Required by the API. (Optional here so responses that omit it still parse.)
source: Option<String>From where the record was created Required by the API. (Optional here so responses that omit it still parse.)
source_id: Option<String>User/Resource Id Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for CreatedByResponseDTO
impl Clone for CreatedByResponseDTO
Source§fn clone(&self) -> CreatedByResponseDTO
fn clone(&self) -> CreatedByResponseDTO
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 CreatedByResponseDTO
impl Debug for CreatedByResponseDTO
Source§impl Default for CreatedByResponseDTO
impl Default for CreatedByResponseDTO
Source§fn default() -> CreatedByResponseDTO
fn default() -> CreatedByResponseDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreatedByResponseDTO
impl<'de> Deserialize<'de> for CreatedByResponseDTO
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 CreatedByResponseDTO
impl RefUnwindSafe for CreatedByResponseDTO
impl Send for CreatedByResponseDTO
impl Sync for CreatedByResponseDTO
impl Unpin for CreatedByResponseDTO
impl UnsafeUnpin for CreatedByResponseDTO
impl UnwindSafe for CreatedByResponseDTO
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