Module Values.StartVerificationRequestSource

Initiates a new verification process for a partner account. This operation begins the verification workflow for either business registration or individual registrant identity verification as required by AWS Partner Central.

Sourcetype nonrec t = {
  1. clientToken : ClientToken.t option;
    (*

    A unique, case-sensitive identifier that you provide to ensure the idempotency of the request. This prevents duplicate verification processes from being started accidentally.

    *)
  2. verificationDetails : VerificationDetails.t option;
    (*

    The specific details required for the verification process, including business information for business verification or personal information for registrant verification.

    *)
}
Sourceval make : ?clientToken:??? -> ?verificationDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of ClientToken.t | `Structure of (string * [> `Structure of (string * [> `String of LegalName.t ]) list ]) 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