Module Values.BusinessVerificationResponseSource

Contains the response information and results from a business verification process, including any verification-specific data returned by the verification service.

Sourcetype nonrec t = {
  1. businessVerificationDetails : BusinessVerificationDetails.t option;
    (*

    The business verification details that were processed and verified, potentially including additional information discovered during the verification process.

    *)
  2. completionUrl : CompletionUrl.t option;
    (*

    A secure URL where the registrant can complete additional verification steps, such as document upload or identity confirmation through a third-party verification service.

    *)
  3. completionUrlExpiresAt : DateTime.t option;
    (*

    The timestamp when the completion URL expires and is no longer valid for accessing the verification workflow.

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