pub struct CompleteFileUploadDto {
pub upload_id: String,
pub file_path: String,
pub location_id: String,
pub conversation_id: String,
pub filename: String,
}Available on crate feature
conversations only.Expand description
CompleteFileUploadDto from the GoHighLevel OpenAPI spec.
Fields§
§upload_id: StringUpload ID from request response Required by the API.
file_path: StringFile path from request response Required by the API.
location_id: StringLocation ID Required by the API.
conversation_id: StringConversation ID Required by the API.
filename: StringOriginal filename (for response mapping) Required by the API.
Trait Implementations§
Source§impl Clone for CompleteFileUploadDto
impl Clone for CompleteFileUploadDto
Source§fn clone(&self) -> CompleteFileUploadDto
fn clone(&self) -> CompleteFileUploadDto
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 CompleteFileUploadDto
impl Debug for CompleteFileUploadDto
Source§impl Default for CompleteFileUploadDto
impl Default for CompleteFileUploadDto
Source§fn default() -> CompleteFileUploadDto
fn default() -> CompleteFileUploadDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CompleteFileUploadDto
impl<'de> Deserialize<'de> for CompleteFileUploadDto
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 CompleteFileUploadDto
impl RefUnwindSafe for CompleteFileUploadDto
impl Send for CompleteFileUploadDto
impl Sync for CompleteFileUploadDto
impl Unpin for CompleteFileUploadDto
impl UnsafeUnpin for CompleteFileUploadDto
impl UnwindSafe for CompleteFileUploadDto
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