Module Values.SupplementalTaxRegistrationEntrySource

The supplemental TRN information to provide when adding or updating a supplemental TRN.

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

    The legal name associated with your TRN registration.

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

    The supplemental TRN unique identifier.

    *)
  4. registrationType : SupplementalTaxRegistrationType.t;
    (*

    Type of supplemental TRN. Currently, this can only be VAT.

    *)
}
Sourceval context_ : string
Sourceval make : address:Address.t -> legalName:LegalName.t -> registrationId:RegistrationId.t -> registrationType:SupplementalTaxRegistrationType.t -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of LegalName.t | `Structure of (string * [> `String of AddressLine1.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