pub struct UploadFilesErrorResponseDto {
pub status: Option<String>,
pub message: Option<String>,
}Available on crate feature
conversations only.Expand description
UploadFilesErrorResponseDto from the GoHighLevel OpenAPI spec.
Fields§
§status: Option<String>HTTP Status code of the request
Allowed values: 400, 413, 415.
Required by the API.
(Optional here so responses that omit it still parse.)
message: Option<String>Error message of the request Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for UploadFilesErrorResponseDto
impl Clone for UploadFilesErrorResponseDto
Source§fn clone(&self) -> UploadFilesErrorResponseDto
fn clone(&self) -> UploadFilesErrorResponseDto
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 UploadFilesErrorResponseDto
impl Debug for UploadFilesErrorResponseDto
Source§impl Default for UploadFilesErrorResponseDto
impl Default for UploadFilesErrorResponseDto
Source§fn default() -> UploadFilesErrorResponseDto
fn default() -> UploadFilesErrorResponseDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for UploadFilesErrorResponseDto
impl<'de> Deserialize<'de> for UploadFilesErrorResponseDto
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 UploadFilesErrorResponseDto
impl RefUnwindSafe for UploadFilesErrorResponseDto
impl Send for UploadFilesErrorResponseDto
impl Sync for UploadFilesErrorResponseDto
impl Unpin for UploadFilesErrorResponseDto
impl UnsafeUnpin for UploadFilesErrorResponseDto
impl UnwindSafe for UploadFilesErrorResponseDto
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