pub struct StoreSettingSchema {
pub alt_id: Option<String>,
pub alt_type: Option<String>,
pub shipping_origin: Option<StoreShippingOriginDto>,
pub store_order_notification: Option<StoreOrderNotificationDto>,
pub store_order_fulfillment_notification: Option<StoreOrderFulfillmentNotificationDto>,
pub id: Option<String>,
pub created_at: Option<String>,
pub updated_at: Option<String>,
}Available on crate feature
store only.Expand description
StoreSettingSchema from the GoHighLevel OpenAPI spec.
Fields§
§alt_id: Option<String>Location Id or Agency Id Required by the API. (Optional here so responses that omit it still parse.)
alt_type: Option<String>Allowed values: location.
Required by the API.
(Optional here so responses that omit it still parse.)
shipping_origin: Option<StoreShippingOriginDto>Shipping origin address Required by the API. (Optional here so responses that omit it still parse.)
store_order_notification: Option<StoreOrderNotificationDto>Store order notification email
store_order_fulfillment_notification: Option<StoreOrderFulfillmentNotificationDto>Store order fulfillment notification email
id: Option<String>The unique identifier for the settings. Required by the API. (Optional here so responses that omit it still parse.)
created_at: Option<String>created at Required by the API. (Optional here so responses that omit it still parse.)
updated_at: Option<String>updated at Required by the API. (Optional here so responses that omit it still parse.)
Trait Implementations§
Source§impl Clone for StoreSettingSchema
impl Clone for StoreSettingSchema
Source§fn clone(&self) -> StoreSettingSchema
fn clone(&self) -> StoreSettingSchema
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 StoreSettingSchema
impl Debug for StoreSettingSchema
Source§impl Default for StoreSettingSchema
impl Default for StoreSettingSchema
Source§fn default() -> StoreSettingSchema
fn default() -> StoreSettingSchema
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for StoreSettingSchema
impl<'de> Deserialize<'de> for StoreSettingSchema
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 StoreSettingSchema
impl RefUnwindSafe for StoreSettingSchema
impl Send for StoreSettingSchema
impl Sync for StoreSettingSchema
impl Unpin for StoreSettingSchema
impl UnsafeUnpin for StoreSettingSchema
impl UnwindSafe for StoreSettingSchema
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