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