pub struct GetStoreSettingResponseDto {
pub status: Option<bool>,
pub message: Option<String>,
pub data: Option<StoreSettingSchema>,
}Available on crate feature
store only.Expand description
GetStoreSettingResponseDto from the GoHighLevel OpenAPI spec.
Fields§
§status: Option<bool>Status of api action Required by the API. (Optional here so responses that omit it still parse.)
message: Option<String>Success message
data: Option<StoreSettingSchema>Shipping carrier data Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for GetStoreSettingResponseDto
impl Clone for GetStoreSettingResponseDto
Source§fn clone(&self) -> GetStoreSettingResponseDto
fn clone(&self) -> GetStoreSettingResponseDto
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 GetStoreSettingResponseDto
impl Debug for GetStoreSettingResponseDto
Source§impl Default for GetStoreSettingResponseDto
impl Default for GetStoreSettingResponseDto
Source§fn default() -> GetStoreSettingResponseDto
fn default() -> GetStoreSettingResponseDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for GetStoreSettingResponseDto
impl<'de> Deserialize<'de> for GetStoreSettingResponseDto
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 GetStoreSettingResponseDto
impl RefUnwindSafe for GetStoreSettingResponseDto
impl Send for GetStoreSettingResponseDto
impl Sync for GetStoreSettingResponseDto
impl Unpin for GetStoreSettingResponseDto
impl UnsafeUnpin for GetStoreSettingResponseDto
impl UnwindSafe for GetStoreSettingResponseDto
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