pub struct CreateFolder {
pub object_key: String,
pub name: String,
pub location_id: String,
}Available on crate feature
custom-fields only.Expand description
CreateFolder from the GoHighLevel OpenAPI spec.
Fields§
§object_key: StringThe 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.
name: StringField name Required by the API.
location_id: StringLocation Id Required by the API.
Trait Implementations§
Source§impl Clone for CreateFolder
impl Clone for CreateFolder
Source§fn clone(&self) -> CreateFolder
fn clone(&self) -> CreateFolder
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 CreateFolder
impl Debug for CreateFolder
Source§impl Default for CreateFolder
impl Default for CreateFolder
Source§fn default() -> CreateFolder
fn default() -> CreateFolder
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFolder
impl<'de> Deserialize<'de> for CreateFolder
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 CreateFolder
impl RefUnwindSafe for CreateFolder
impl Send for CreateFolder
impl Sync for CreateFolder
impl Unpin for CreateFolder
impl UnsafeUnpin for CreateFolder
impl UnwindSafe for CreateFolder
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