pub struct FileField {
pub id: String,
pub key: Option<String>,
pub field_value: Option<Value>,
pub field_value_alt: Option<Value>,
}Available on crate feature
contacts only.Expand description
FileField 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<Value>File upload value — a map of UUID to file metadata and download URL (preferred).
field_value_alt: Option<Value>Deprecated. Use fieldValue instead.
Trait Implementations§
Source§impl<'de> Deserialize<'de> for FileField
impl<'de> Deserialize<'de> for FileField
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 FileField
impl RefUnwindSafe for FileField
impl Send for FileField
impl Sync for FileField
impl Unpin for FileField
impl UnsafeUnpin for FileField
impl UnwindSafe for FileField
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