Module Values.VerificationResponseDetailsSource

A union structure containing the response details specific to different types of verification processes, providing type-specific information and results.

Sourcetype nonrec t = {
  1. businessVerificationResponse : BusinessVerificationResponse.t option;
    (*

    The response details from a business verification process, including verification results and any additional business information discovered.

    *)
  2. registrantVerificationResponse : RegistrantVerificationResponse.t option;
    (*

    The response details from a registrant verification process, including verification results and any additional steps required for identity confirmation.

    *)
}
Sourceval make : ?businessVerificationResponse:??? -> ?registrantVerificationResponse:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Structure of (string * [> `String of CompletionUrl.t | `Structure of (string * [> `String of LegalName.t ]) list | `Timestamp of DateTime.t ]) list ]) 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