* Indicates whether the customer should be charged taxes when placing orders. Valid values are `true` and `false`
*/
@property(nonatomic,assign)BOOLtaxExempt;
/**
* States whether or not the email address has been verified.
*/
@property(nonatomic,assign)BOOLverifiedEmail;
/**
* Indicates whether the customer has consented to be sent marketing material via email. Valid values are `true` and `false`
*/
@property(nonatomic,assign)BOOLacceptsMarketing;
/**
* The state of the customer in a shop. Customers start out as `disabled`. They are invited by email to setup an account with a shop. The customer can then:
*
* - `decline`: decline the invite to start an account that saves their customer settings.
* - `invited`: accept the invite to start an account that saves their customer settings. Customers then change from `disabled` to `enabled`.
*
* Shop owners also have the ability to disable a customer. This will cancel a customer's membership with a shop.