pub struct CreateStoreSettingResponseDto {
pub status: Option<bool>,
pub message: Option<String>,
pub data: Option<StoreSettingSchema>,
}Available on crate feature
store only.Expand description
CreateStoreSettingResponseDto 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 CreateStoreSettingResponseDto
impl Clone for CreateStoreSettingResponseDto
Source§fn clone(&self) -> CreateStoreSettingResponseDto
fn clone(&self) -> CreateStoreSettingResponseDto
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 Default for CreateStoreSettingResponseDto
impl Default for CreateStoreSettingResponseDto
Source§fn default() -> CreateStoreSettingResponseDto
fn default() -> CreateStoreSettingResponseDto
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for CreateStoreSettingResponseDto
impl<'de> Deserialize<'de> for CreateStoreSettingResponseDto
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 CreateStoreSettingResponseDto
impl RefUnwindSafe for CreateStoreSettingResponseDto
impl Send for CreateStoreSettingResponseDto
impl Sync for CreateStoreSettingResponseDto
impl Unpin for CreateStoreSettingResponseDto
impl UnsafeUnpin for CreateStoreSettingResponseDto
impl UnwindSafe for CreateStoreSettingResponseDto
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