Struct mailchimp_api::types::ECommerceCustomerDataType
source · pub struct ECommerceCustomerDataType {
pub address: Option<Address>,
pub company: String,
pub email_address: String,
pub first_name: String,
pub id: String,
pub last_name: String,
pub opt_in_status: bool,
}
Expand description
Information about a specific customer. Orders for existing customers should include only the id
parameter in the customer
object body.
Fields
address: Option<Address>
Information about a specific customer. Orders for existing customers should include only the id
parameter in the customer
object body.
company: String
Information about a specific customer. Orders for existing customers should include only the id
parameter in the customer
object body.
email_address: String
The name of the folder.
first_name: String
Information about a specific customer. Orders for existing customers should include only the id
parameter in the customer
object body.
id: String
The name of the folder.
last_name: String
Information about a specific customer. Orders for existing customers should include only the id
parameter in the customer
object body.
opt_in_status: bool
Whether the webhook is triggered when a list subscriber is added.
Trait Implementations
sourceimpl Clone for ECommerceCustomerDataType
impl Clone for ECommerceCustomerDataType
sourcefn clone(&self) -> ECommerceCustomerDataType
fn clone(&self) -> ECommerceCustomerDataType
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for ECommerceCustomerDataType
impl Debug for ECommerceCustomerDataType
sourceimpl<'de> Deserialize<'de> for ECommerceCustomerDataType
impl<'de> Deserialize<'de> for ECommerceCustomerDataType
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>,
sourceimpl JsonSchema for ECommerceCustomerDataType
impl JsonSchema for ECommerceCustomerDataType
sourcefn schema_name() -> String
fn schema_name() -> String
sourcefn json_schema(gen: &mut SchemaGenerator) -> Schema
fn json_schema(gen: &mut SchemaGenerator) -> Schema
sourcefn is_referenceable() -> bool
fn is_referenceable() -> bool
$ref
keyword. Read more