pub struct UpdateCustomObjectSchemaDTO {
pub labels: Option<CustomObjectLabelUpdateDto>,
pub description: Option<String>,
pub location_id: String,
pub searchable_properties: Vec<String>,
}Available on crate feature
objects only.Expand description
UpdateCustomObjectSchemaDTO from the GoHighLevel OpenAPI spec.
Fields§
§labels: Option<CustomObjectLabelUpdateDto>This is how your custom object will be displayed
description: Option<String>Pet Object`s description
location_id: Stringlocation id Required by the API.
searchable_properties: Vec<String>Searchable Fields: Provide the field key of your object that you want to search on, using the format (custom_object.<object_name>.<field_key>). Required by the API.
Trait Implementations§
Source§impl Clone for UpdateCustomObjectSchemaDTO
impl Clone for UpdateCustomObjectSchemaDTO
Source§fn clone(&self) -> UpdateCustomObjectSchemaDTO
fn clone(&self) -> UpdateCustomObjectSchemaDTO
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 UpdateCustomObjectSchemaDTO
impl Debug for UpdateCustomObjectSchemaDTO
Source§impl Default for UpdateCustomObjectSchemaDTO
impl Default for UpdateCustomObjectSchemaDTO
Source§fn default() -> UpdateCustomObjectSchemaDTO
fn default() -> UpdateCustomObjectSchemaDTO
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UpdateCustomObjectSchemaDTO
impl<'de> Deserialize<'de> for UpdateCustomObjectSchemaDTO
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 UpdateCustomObjectSchemaDTO
impl RefUnwindSafe for UpdateCustomObjectSchemaDTO
impl Send for UpdateCustomObjectSchemaDTO
impl Sync for UpdateCustomObjectSchemaDTO
impl Unpin for UpdateCustomObjectSchemaDTO
impl UnsafeUnpin for UpdateCustomObjectSchemaDTO
impl UnwindSafe for UpdateCustomObjectSchemaDTO
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