pub struct ICustomFieldFolder {
pub id: Option<String>,
pub object_key: Option<String>,
pub location_id: Option<String>,
pub name: Option<String>,
}Available on crate feature
custom-fields only.Expand description
ICustomFieldFolder from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Unique identifier of the object Required by the API. (Optional here so responses that omit it still parse.)
object_key: Option<String>The key for your custom object. This key uniquely identifies the custom object. Example: “custom_object.pet” for a custom object related to pets. Required by the API. (Optional here so responses that omit it still parse.)
location_id: Option<String>Location Id Required by the API. (Optional here so responses that omit it still parse.)
name: Option<String>Field name Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for ICustomFieldFolder
impl Clone for ICustomFieldFolder
Source§fn clone(&self) -> ICustomFieldFolder
fn clone(&self) -> ICustomFieldFolder
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 ICustomFieldFolder
impl Debug for ICustomFieldFolder
Source§impl Default for ICustomFieldFolder
impl Default for ICustomFieldFolder
Source§fn default() -> ICustomFieldFolder
fn default() -> ICustomFieldFolder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for ICustomFieldFolder
impl<'de> Deserialize<'de> for ICustomFieldFolder
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 ICustomFieldFolder
impl RefUnwindSafe for ICustomFieldFolder
impl Send for ICustomFieldFolder
impl Sync for ICustomFieldFolder
impl Unpin for ICustomFieldFolder
impl UnsafeUnpin for ICustomFieldFolder
impl UnwindSafe for ICustomFieldFolder
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