Module Values.SupplementalTaxRegistrationSource

Supplemental TRN details.

Sourcetype nonrec t = {
  1. address : Address.t option;
  2. authorityId : GenericString.t option;
    (*

    Unique authority ID for the supplemental TRN.

    *)
  3. legalName : LegalName.t option;
    (*

    The legal name associated with your TRN registration.

    *)
  4. registrationId : RegistrationId.t option;
    (*

    The supplemental TRN unique identifier.

    *)
  5. registrationType : SupplementalTaxRegistrationType.t option;
    (*

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

    *)
  6. status : TaxRegistrationStatus.t option;
    (*

    The status of your TRN.

    *)
}
Sourceval make : ?address:??? -> ?authorityId:??? -> ?legalName:??? -> ?registrationId:??? -> ?registrationType:??? -> ?status:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `String of GenericString.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