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