Module Values.PolandAdditionalInfoSource

Additional tax information associated with your TRN in Poland.

Sourcetype nonrec t = {
  1. individualRegistrationNumber : IndividualRegistrationNumber.t option;
    (*

    The individual tax registration number (NIP). Individual NIP is valid for other taxes excluding VAT purposes.

    *)
  2. isGroupVatEnabled : Boolean.t option;
    (*

    True if your business is a member of a VAT group with a NIP active for VAT purposes. Otherwise, this is false.

    *)
}
Sourceval make : ?individualRegistrationNumber:??? -> ?isGroupVatEnabled:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of IndividualRegistrationNumber.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