pub struct RecordResponseDTO {
pub id: String,
pub owner: Vec<String>,
pub followers: Vec<String>,
pub properties: String,
pub created_at: String,
pub updated_at: String,
pub location_id: String,
pub object_id: String,
pub object_key: String,
pub created_by: CreatedByResponseDTO,
pub last_updated_by: CreatedByResponseDTO,
pub search_after: Vec<f64>,
}Available on crate feature
objects only.Expand description
RecordResponseDTO from the GoHighLevel OpenAPI spec.
Fields§
§id: Stringid of the record Required by the API.
owner: Vec<String>Owner (User’s id). Limited to 1 for now . Only supported for custom objects for now Required by the API.
followers: Vec<String>Follower (User’s ids). Limited to 10 and supported for custom objects for now Required by the API.
properties: StringProperties of the record Required by the API.
created_at: StringDate and time when the object was added Format: date-time (ISO-8601 string). Required by the API.
updated_at: StringDate and time when the object was last updated Format: date-time (ISO-8601 string). Required by the API.
location_id: StringLocation Id Required by the API.
object_id: StringObjectId Id Required by the API.
object_key: StringObjectId key Required by the API.
created_by: CreatedByResponseDTOCreated By Meta Required by the API.
last_updated_by: CreatedByResponseDTOLast Updated By Meta Required by the API.
search_after: Vec<f64>Required by the API.
Trait Implementations§
Source§impl Clone for RecordResponseDTO
impl Clone for RecordResponseDTO
Source§fn clone(&self) -> RecordResponseDTO
fn clone(&self) -> RecordResponseDTO
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 RecordResponseDTO
impl Debug for RecordResponseDTO
Source§impl Default for RecordResponseDTO
impl Default for RecordResponseDTO
Source§fn default() -> RecordResponseDTO
fn default() -> RecordResponseDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for RecordResponseDTO
impl<'de> Deserialize<'de> for RecordResponseDTO
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 RecordResponseDTO
impl RefUnwindSafe for RecordResponseDTO
impl Send for RecordResponseDTO
impl Sync for RecordResponseDTO
impl Unpin for RecordResponseDTO
impl UnsafeUnpin for RecordResponseDTO
impl UnwindSafe for RecordResponseDTO
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