Struct mailchimp_api::types::Stores
source · pub struct Stores {Show 19 fields
pub links: Vec<Links>,
pub address: Option<ECommerceStoresAddress>,
pub automations: Option<ECommerceStoresAutomations>,
pub connected_site: Option<ECommerceStoresConnectedSite>,
pub created_at: Option<DateTime<Utc>>,
pub currency_code: String,
pub domain: String,
pub email_address: String,
pub id: String,
pub is_syncing: bool,
pub list_id: String,
pub list_is_active: bool,
pub money_format: String,
pub name: String,
pub phone: String,
pub platform: String,
pub primary_locale: String,
pub timezone: String,
pub updated_at: Option<DateTime<Utc>>,
}
Expand description
An individual store in an account.
Fields
links: Vec<Links>
An individual store in an account.
address: Option<ECommerceStoresAddress>
An individual store in an account.
automations: Option<ECommerceStoresAutomations>
An individual store in an account.
connected_site: Option<ECommerceStoresConnectedSite>
An individual store in an account.
created_at: Option<DateTime<Utc>>
An individual store in an account.
currency_code: String
An individual store in an account.
domain: String
An individual store in an account.
email_address: String
An individual store in an account.
id: String
An individual store in an account.
is_syncing: bool
An individual store in an account.
list_id: String
An individual store in an account.
list_is_active: bool
An individual store in an account.
money_format: String
An individual store in an account.
name: String
An individual store in an account.
phone: String
An individual store in an account.
platform: String
An individual store in an account.
primary_locale: String
An individual store in an account.
timezone: String
An individual store in an account.
updated_at: Option<DateTime<Utc>>
An individual store in an account.
Trait Implementations
sourceimpl<'de> Deserialize<'de> for Stores
impl<'de> Deserialize<'de> for Stores
sourcefn 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
sourceimpl JsonSchema for Stores
impl JsonSchema for Stores
sourcefn schema_name() -> String
fn schema_name() -> String
The name of the generated JSON Schema. Read more
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
Generates a JSON Schema for this type. Read more
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
Whether JSON Schemas generated for this type should be re-used where possible using the
$ref
keyword. Read moreimpl StructuralPartialEq for Stores
Auto Trait Implementations
impl RefUnwindSafe for Stores
impl Send for Stores
impl Sync for Stores
impl Unpin for Stores
impl UnwindSafe for Stores
Blanket Implementations
sourceimpl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
const: unstable · sourcefn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more