pub struct CustomObjectDisplayPropertyDetails {
pub key: String,
pub name: String,
pub data_type: String,
}Available on crate feature
objects only.Expand description
CustomObjectDisplayPropertyDetails from the GoHighLevel OpenAPI spec.
Fields§
§key: Stringkey that would be used to refer the custom field internally (lowercase + underscore_separated). ‘custom_objects.{{objectKey}}’ would be added as prefix by default is not passed Required by the API.
name: StringName of the Primary property name which will be displayed on the record page Required by the API.
data_type: StringPrimary property data Type (it can either be TEXT or NUMERICAL type) Required by the API.
Trait Implementations§
Source§impl Clone for CustomObjectDisplayPropertyDetails
impl Clone for CustomObjectDisplayPropertyDetails
Source§fn clone(&self) -> CustomObjectDisplayPropertyDetails
fn clone(&self) -> CustomObjectDisplayPropertyDetails
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 Default for CustomObjectDisplayPropertyDetails
impl Default for CustomObjectDisplayPropertyDetails
Source§fn default() -> CustomObjectDisplayPropertyDetails
fn default() -> CustomObjectDisplayPropertyDetails
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomObjectDisplayPropertyDetails
impl<'de> Deserialize<'de> for CustomObjectDisplayPropertyDetails
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 CustomObjectDisplayPropertyDetails
impl RefUnwindSafe for CustomObjectDisplayPropertyDetails
impl Send for CustomObjectDisplayPropertyDetails
impl Sync for CustomObjectDisplayPropertyDetails
impl Unpin for CustomObjectDisplayPropertyDetails
impl UnsafeUnpin for CustomObjectDisplayPropertyDetails
impl UnwindSafe for CustomObjectDisplayPropertyDetails
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