Module Values.BusinessVerificationDetailsSource

Contains the business information required for verifying a company's legal status and registration details within AWS Partner Central.

Sourcetype nonrec t = {
  1. legalName : LegalName.t;
    (*

    The official legal name of the business as registered with the appropriate government authorities.

    *)
  2. registrationId : RegistrationId.t;
    (*

    The unique business registration identifier assigned by the government or regulatory authority, such as a company registration number or tax identification number.

    *)
  3. countryCode : CountryCode.t;
    (*

    The ISO 3166-1 alpha-2 country code where the business is legally registered and operates.

    *)
  4. jurisdictionOfIncorporation : JurisdictionCode.t option;
    (*

    The specific legal jurisdiction or state where the business was incorporated or registered, providing additional location context beyond the country code.

    *)
}
Sourceval context_ : string
Sourceval make : ?jurisdictionOfIncorporation:??? -> legalName:LegalName.t -> registrationId:RegistrationId.t -> countryCode:CountryCode.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of LegalName.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