AccountDossierUpdateRequest
public struct AccountDossierUpdateRequest : Encodable, Sendable
Model that holds the data used to update a document.
-
This is your unique ID for this dossier. This field is used to guarantee idempotency.
Declaration
Swift
public let externalId: String? -
Whether the dossier should be verified in real time.
Declaration
Swift
public let realTimeVerification: Bool -
The documents.
Declaration
Swift
public let documents: [Document] -
Auxiliary constructor.
Declaration
Swift
public init(documents: [Document], externalId: String? = nil, realTimeVerification: Bool = false)Parameters
documentsThe documents.
externalIdThis is your unique ID for this dossier. This field is used to guarantee idempotency.
realTimeVerificationWhether the dossier should be verified in real time. Default to
false.
View on GitHub