pub struct CustomFieldsInputObjectSchema {
pub id: Option<String>,
pub key: Option<String>,
pub field_value: Option<Value>,
pub field_value_alt: Option<Value>,
}Available on crate feature
contacts only.Expand description
customFieldsInputObjectSchema from the GoHighLevel OpenAPI spec.
Fields§
§id: Option<String>Pass either id or key of custom field
Required by the API.
(Optional here so responses that omit it still parse.)
key: Option<String>Pass either id or key of custom field
field_value: Option<Value>Object value for the custom field (preferred).
field_value_alt: Option<Value>Deprecated. Use fieldValue instead.
Trait Implementations§
Source§impl Clone for CustomFieldsInputObjectSchema
impl Clone for CustomFieldsInputObjectSchema
Source§fn clone(&self) -> CustomFieldsInputObjectSchema
fn clone(&self) -> CustomFieldsInputObjectSchema
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 CustomFieldsInputObjectSchema
impl Default for CustomFieldsInputObjectSchema
Source§fn default() -> CustomFieldsInputObjectSchema
fn default() -> CustomFieldsInputObjectSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CustomFieldsInputObjectSchema
impl<'de> Deserialize<'de> for CustomFieldsInputObjectSchema
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 CustomFieldsInputObjectSchema
impl RefUnwindSafe for CustomFieldsInputObjectSchema
impl Send for CustomFieldsInputObjectSchema
impl Sync for CustomFieldsInputObjectSchema
impl Unpin for CustomFieldsInputObjectSchema
impl UnsafeUnpin for CustomFieldsInputObjectSchema
impl UnwindSafe for CustomFieldsInputObjectSchema
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