AccountDossierUpdateRequest

public struct AccountDossierUpdateRequest : Encodable

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 var externalId: String?
  • Whether the dossier should be verified in real time.

    Declaration

    Swift

    public var realTimeVerification: Bool
  • The documents.

    Declaration

    Swift

    public var documents: [Document]
  • Auxiliary constructor.

    Declaration

    Swift

    public init(documents: [Document],
                externalId: String? = nil,
                realTimeVerification: Bool = false)

    Parameters

    documents

    The documents.

    externalId

    This is your unique ID for this dossier. This field is used to guarantee idempotency.

    realTimeVerification

    Whether the dossier should be verified in real time. Default to false.