pub struct LiaCountrySettings {
pub about: Option<LiaAboutPageSettings>,
pub country: Option<String>,
pub hosted_local_storefront_active: Option<bool>,
pub inventory: Option<LiaInventorySettings>,
pub on_display_to_order: Option<LiaOnDisplayToOrderSettings>,
pub pos_data_provider: Option<LiaPosDataProvider>,
pub store_pickup_active: Option<bool>,
}Expand description
There is no detailed description.
This type is not used in any activity, and only used as part of another schema.
Fields§
§about: Option<LiaAboutPageSettings>The settings for the About page.
country: Option<String>Required. CLDR country code (e.g. “US”).
hosted_local_storefront_active: Option<bool>The status of the “Merchant hosted local storefront” feature.
inventory: Option<LiaInventorySettings>LIA inventory verification settings.
on_display_to_order: Option<LiaOnDisplayToOrderSettings>LIA “On Display To Order” settings.
pos_data_provider: Option<LiaPosDataProvider>The POS data provider linked with this country.
store_pickup_active: Option<bool>The status of the “Store pickup” feature.
Trait Implementations§
Source§impl Clone for LiaCountrySettings
impl Clone for LiaCountrySettings
Source§fn clone(&self) -> LiaCountrySettings
fn clone(&self) -> LiaCountrySettings
Returns a duplicate of the value. Read more
1.0.0 · 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 LiaCountrySettings
impl Debug for LiaCountrySettings
Source§impl Default for LiaCountrySettings
impl Default for LiaCountrySettings
Source§fn default() -> LiaCountrySettings
fn default() -> LiaCountrySettings
Returns the “default value” for a type. Read more
Source§impl<'de> Deserialize<'de> for LiaCountrySettings
impl<'de> Deserialize<'de> for LiaCountrySettings
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
Source§impl Serialize for LiaCountrySettings
impl Serialize for LiaCountrySettings
impl Part for LiaCountrySettings
Auto Trait Implementations§
impl Freeze for LiaCountrySettings
impl RefUnwindSafe for LiaCountrySettings
impl Send for LiaCountrySettings
impl Sync for LiaCountrySettings
impl Unpin for LiaCountrySettings
impl UnwindSafe for LiaCountrySettings
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