Module Values.VerificationDetailsSource

Required information to verify your TRN.

Sourcetype nonrec t = {
  1. dateOfBirth : DateOfBirth.t option;
    (*

    Date of birth to verify your submitted TRN. Use the YYYY-MM-DD format.

    *)
  2. taxRegistrationDocuments : TaxRegistrationDocuments.t option;
    (*

    The tax registration document, which is required for specific countries such as Bangladesh, Kenya, South Korea and Spain.

    *)
}
Sourceval make : ?dateOfBirth:??? -> ?taxRegistrationDocuments:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `List of [> `Structure of (string * [> `Structure of (string * [> `Blob of FileBlob.t | `String of TaxDocumentName.t ]) list ]) list ] list | `String of DateOfBirth.t ]) list ]
Sourceval to_query : t -> Awso.Client.Query.t
Sourceval of_xml : Awso.Xml.t -> t
Sourceval of_string : string -> t
Sourceval of_json : Yojson.Safe.t -> t
Sourceval to_json : t -> Yojson.Safe.t