Module Values.CanadaAdditionalInfoSource

Additional tax information associated with your TRN in Canada .

Sourcetype nonrec t = {
  1. canadaQuebecSalesTaxNumber : CanadaQuebecSalesTaxNumberString.t option;
    (*

    The Quebec Sales Tax ID number. Leave blank if you do not have a Quebec Sales Tax ID number.

    *)
  2. canadaRetailSalesTaxNumber : CanadaRetailSalesTaxNumberString.t option;
    (*

    Manitoba Retail Sales Tax ID number. Customers purchasing Amazon Web Services services for resale in Manitoba must provide a valid Retail Sales Tax ID number for Manitoba. Leave this blank if you do not have a Retail Sales Tax ID number in Manitoba or are not purchasing Amazon Web Services services for resale.

    *)
  3. isResellerAccount : Boolean.t option;
    (*

    The value for this parameter must be true if the provincialSalesTaxId value is provided for a TRN in British Columbia, Saskatchewan, or Manitoba provinces. To claim a provincial sales tax (PST) and retail sales tax (RST) reseller exemption, you must confirm that purchases from this account were made for resale. Otherwise, remove the PST or RST number from the provincialSalesTaxId parameter from your request.

    *)
  4. provincialSalesTaxId : CanadaProvincialSalesTaxIdString.t option;
    (*

    The provincial sales tax ID for your TRN in Canada. This parameter can represent the following: Provincial sales tax ID number for British Columbia and Saskatchewan provinces Manitoba retail sales tax ID number for Manitoba province Quebec sales tax ID number for Quebec province The Tax Setting API only accepts this parameter if the TRN is specified for the previous provinces. For other provinces, the Tax Settings API doesn't accept this parameter.

    *)
}
Sourceval make : ?canadaQuebecSalesTaxNumber:??? -> ?canadaRetailSalesTaxNumber:??? -> ?isResellerAccount:??? -> ?provincialSalesTaxId:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Boolean of Boolean.t | `String of CanadaQuebecSalesTaxNumberString.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