pub struct LendingAddressSchema {
pub street_address_line1: String,
pub street_address_line2: Option<String>,
pub city: String,
pub state: String,
pub zip_code: String,
pub zip_code_plus_four: Option<String>,
pub county_name: Option<String>,
}
Fields§
§street_address_line1: String
§street_address_line2: Option<String>
§city: String
§state: String
Two-digit US state code
zip_code: String
Five-digit US zip code
zip_code_plus_four: Option<String>
Four-digit additional US zip code numbers
county_name: Option<String>
If the county name is provided in the request, the address will not be validated. We will directly look up the eligibility of the state and county provided in the request.
Trait Implementations§
Source§impl Debug for LendingAddressSchema
impl Debug for LendingAddressSchema
Source§impl<'de> Deserialize<'de> for LendingAddressSchema
impl<'de> Deserialize<'de> for LendingAddressSchema
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 Display for LendingAddressSchema
impl Display for LendingAddressSchema
Auto Trait Implementations§
impl Freeze for LendingAddressSchema
impl RefUnwindSafe for LendingAddressSchema
impl Send for LendingAddressSchema
impl Sync for LendingAddressSchema
impl Unpin for LendingAddressSchema
impl UnwindSafe for LendingAddressSchema
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