pub struct AccountApplicationAddressSchema {
pub id: String,
pub type_: String,
pub line_text: String,
pub additional_line_text: Option<String>,
pub city_name: String,
pub county_name: Option<String>,
pub state_code: String,
pub zip_code: String,
}
Fields§
§id: String
Address ID
type_: String
Address type, current or mailing
line_text: String
First line of address
additional_line_text: Option<String>
Second (optional) line of address
city_name: String
City name
county_name: Option<String>
County name
state_code: String
2-digit state or territory code
zip_code: String
5-digit zip code
Trait Implementations§
Source§impl<'de> Deserialize<'de> for AccountApplicationAddressSchema
impl<'de> Deserialize<'de> for AccountApplicationAddressSchema
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
Auto Trait Implementations§
impl Freeze for AccountApplicationAddressSchema
impl RefUnwindSafe for AccountApplicationAddressSchema
impl Send for AccountApplicationAddressSchema
impl Sync for AccountApplicationAddressSchema
impl Unpin for AccountApplicationAddressSchema
impl UnwindSafe for AccountApplicationAddressSchema
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more