pub struct StoreSettingSchema {
pub alt_id: String,
pub alt_type: String,
pub shipping_origin: StoreShippingOriginDto,
pub store_order_notification: Option<StoreOrderNotificationDto>,
pub store_order_fulfillment_notification: Option<StoreOrderFulfillmentNotificationDto>,
pub id: String,
pub created_at: String,
pub updated_at: String,
}Available on crate feature
store only.Expand description
StoreSettingSchema from the GoHighLevel OpenAPI spec.
Fields§
§alt_id: StringLocation Id or Agency Id Required by the API.
alt_type: StringAllowed values: location.
Required by the API.
shipping_origin: StoreShippingOriginDtoShipping origin address Required by the API.
store_order_notification: Option<StoreOrderNotificationDto>Store order notification email
store_order_fulfillment_notification: Option<StoreOrderFulfillmentNotificationDto>Store order fulfillment notification email
id: StringThe unique identifier for the settings. Required by the API.
created_at: Stringcreated at Required by the API.
updated_at: Stringupdated at Required by the API.
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