pub struct TaxInfoUpdateRequestModel {
pub country: String,
pub postal_code: Option<String>,
}
Fields§
§country: String
§postal_code: Option<String>
Implementations§
source§impl TaxInfoUpdateRequestModel
impl TaxInfoUpdateRequestModel
pub fn new(country: String) -> TaxInfoUpdateRequestModel
Trait Implementations§
source§impl Clone for TaxInfoUpdateRequestModel
impl Clone for TaxInfoUpdateRequestModel
source§fn clone(&self) -> TaxInfoUpdateRequestModel
fn clone(&self) -> TaxInfoUpdateRequestModel
Returns a copy 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 TaxInfoUpdateRequestModel
impl Debug for TaxInfoUpdateRequestModel
source§impl Default for TaxInfoUpdateRequestModel
impl Default for TaxInfoUpdateRequestModel
source§fn default() -> TaxInfoUpdateRequestModel
fn default() -> TaxInfoUpdateRequestModel
Returns the “default value” for a type. Read more
source§impl<'de> Deserialize<'de> for TaxInfoUpdateRequestModel
impl<'de> Deserialize<'de> for TaxInfoUpdateRequestModel
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 PartialEq<TaxInfoUpdateRequestModel> for TaxInfoUpdateRequestModel
impl PartialEq<TaxInfoUpdateRequestModel> for TaxInfoUpdateRequestModel
source§fn eq(&self, other: &TaxInfoUpdateRequestModel) -> bool
fn eq(&self, other: &TaxInfoUpdateRequestModel) -> bool
This method tests for
self
and other
values to be equal, and is used
by ==
.