pub struct CreateFolderParams {
pub alt_id: String,
pub alt_type: String,
pub name: String,
pub parent_id: Option<String>,
}Available on crate feature
medias only.Expand description
CreateFolderParams from the GoHighLevel OpenAPI spec.
Fields§
§alt_id: StringLocation Id Required by the API.
alt_type: StringType of entity (location only)
Allowed values: location.
Required by the API.
name: StringName of the folder to be created Required by the API.
parent_id: Option<String>ID of the parent folder (optional)
Trait Implementations§
Source§impl Clone for CreateFolderParams
impl Clone for CreateFolderParams
Source§fn clone(&self) -> CreateFolderParams
fn clone(&self) -> CreateFolderParams
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 CreateFolderParams
impl Debug for CreateFolderParams
Source§impl Default for CreateFolderParams
impl Default for CreateFolderParams
Source§fn default() -> CreateFolderParams
fn default() -> CreateFolderParams
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateFolderParams
impl<'de> Deserialize<'de> for CreateFolderParams
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 CreateFolderParams
impl RefUnwindSafe for CreateFolderParams
impl Send for CreateFolderParams
impl Sync for CreateFolderParams
impl Unpin for CreateFolderParams
impl UnsafeUnpin for CreateFolderParams
impl UnwindSafe for CreateFolderParams
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