pub struct TaxIdVerification {
pub status: TaxIdVerificationStatus,
pub verified_address: Option<String>,
pub verified_name: Option<String>,
}
Fields§
§status: TaxIdVerificationStatus
Verification status, one of pending
, verified
, unverified
, or unavailable
.
verified_address: Option<String>
Verified address.
verified_name: Option<String>
Verified name.
Trait Implementations§
Source§impl Clone for TaxIdVerification
impl Clone for TaxIdVerification
Source§fn clone(&self) -> TaxIdVerification
fn clone(&self) -> TaxIdVerification
Returns a duplicate 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 TaxIdVerification
impl Debug for TaxIdVerification
Source§impl Deserialize for TaxIdVerification
impl Deserialize for TaxIdVerification
Source§impl FromValueOpt for TaxIdVerification
impl FromValueOpt for TaxIdVerification
fn from_value(v: Value) -> Option<Self>
Auto Trait Implementations§
impl Freeze for TaxIdVerification
impl RefUnwindSafe for TaxIdVerification
impl Send for TaxIdVerification
impl Sync for TaxIdVerification
impl Unpin for TaxIdVerification
impl UnwindSafe for TaxIdVerification
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