pub struct CreateTokenPersonDocuments {
pub company_authorization: Option<DocumentsParam>,
pub passport: Option<DocumentsParam>,
pub visa: Option<DocumentsParam>,
}
Expand description
Documents that may be submitted to satisfy various informational requests.
Fields§
One or more documents that demonstrate proof that this person is authorized to represent the company.
passport: Option<DocumentsParam>
One or more documents showing the person’s passport page with photo and personal data.
visa: Option<DocumentsParam>
One or more documents showing the person’s visa required for living in the country where they are residing.
Implementations§
Trait Implementations§
Source§impl Clone for CreateTokenPersonDocuments
impl Clone for CreateTokenPersonDocuments
Source§fn clone(&self) -> CreateTokenPersonDocuments
fn clone(&self) -> CreateTokenPersonDocuments
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 CreateTokenPersonDocuments
impl Debug for CreateTokenPersonDocuments
Source§impl Default for CreateTokenPersonDocuments
impl Default for CreateTokenPersonDocuments
Auto Trait Implementations§
impl Freeze for CreateTokenPersonDocuments
impl RefUnwindSafe for CreateTokenPersonDocuments
impl Send for CreateTokenPersonDocuments
impl Sync for CreateTokenPersonDocuments
impl Unpin for CreateTokenPersonDocuments
impl UnwindSafe for CreateTokenPersonDocuments
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