pub struct CreateIdentityVerificationSessionRelatedPerson {
pub account: String,
pub person: String,
}Expand description
Tokens referencing a Person resource and it’s associated account.
Fields§
§account: StringA token representing a connected account. If provided, the person parameter is also required and must be associated with the account.
person: StringA token referencing a Person resource that this verification is being used to verify.
Implementations§
Trait Implementations§
Source§impl Clone for CreateIdentityVerificationSessionRelatedPerson
impl Clone for CreateIdentityVerificationSessionRelatedPerson
Source§fn clone(&self) -> CreateIdentityVerificationSessionRelatedPerson
fn clone(&self) -> CreateIdentityVerificationSessionRelatedPerson
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 moreAuto Trait Implementations§
impl Freeze for CreateIdentityVerificationSessionRelatedPerson
impl RefUnwindSafe for CreateIdentityVerificationSessionRelatedPerson
impl Send for CreateIdentityVerificationSessionRelatedPerson
impl Sync for CreateIdentityVerificationSessionRelatedPerson
impl Unpin for CreateIdentityVerificationSessionRelatedPerson
impl UnwindSafe for CreateIdentityVerificationSessionRelatedPerson
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