Struct mailchimp_api::types::ECommerceCustomer
source · pub struct ECommerceCustomer {
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. For existing customers include only the id
parameter in the customer
object body.
Fields
address: Option<Address>
Information about a specific customer. For existing customers include only the id
parameter in the customer
object body.
company: String
Information about a specific customer. For existing customers include only the id
parameter in the customer
object body.
email_address: String
Information about a specific customer. For existing customers include only the id
parameter in the customer
object body.
first_name: String
Information about a specific customer. For existing customers 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. For existing customers include only the id
parameter in the customer
object body.
opt_in_status: bool
Information about a specific customer. For existing customers include only the id
parameter in the customer
object body.
Trait Implementations
sourceimpl Clone for ECommerceCustomer
impl Clone for ECommerceCustomer
sourcefn clone(&self) -> ECommerceCustomer
fn clone(&self) -> ECommerceCustomer
1.0.0 · sourcefn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moresourceimpl Debug for ECommerceCustomer
impl Debug for ECommerceCustomer
sourceimpl<'de> Deserialize<'de> for ECommerceCustomer
impl<'de> Deserialize<'de> for ECommerceCustomer
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 ECommerceCustomer
impl JsonSchema for ECommerceCustomer
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