pub struct IRecordSchema {
pub id: String,
pub owner: Vec<String>,
pub followers: Vec<String>,
pub properties: String,
pub date_added: String,
pub date_updated: String,
}Available on crate feature
objects only.Expand description
IRecordSchema 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 with custom objects Required by the API.
followers: Vec<String>Follower (User’s ids). Limited to 10 for now Required by the API.
properties: StringProperties of the record Required by the API.
date_added: StringDate and time when the object was added Format: date-time (ISO-8601 string). Required by the API.
date_updated: StringDate and time when the object was last updated Format: date-time (ISO-8601 string). Required by the API.
Trait Implementations§
Source§impl Clone for IRecordSchema
impl Clone for IRecordSchema
Source§fn clone(&self) -> IRecordSchema
fn clone(&self) -> IRecordSchema
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 IRecordSchema
impl Debug for IRecordSchema
Source§impl Default for IRecordSchema
impl Default for IRecordSchema
Source§fn default() -> IRecordSchema
fn default() -> IRecordSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for IRecordSchema
impl<'de> Deserialize<'de> for IRecordSchema
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 IRecordSchema
impl RefUnwindSafe for IRecordSchema
impl Send for IRecordSchema
impl Sync for IRecordSchema
impl Unpin for IRecordSchema
impl UnsafeUnpin for IRecordSchema
impl UnwindSafe for IRecordSchema
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