Module Values.TaxExemptionSource

The tax exemption.

Sourcetype nonrec t = {
  1. authority : Authority.t option;
    (*

    The address domain associate with tax exemption.

    *)
  2. effectiveDate : Timestamp.t option;
    (*

    The tax exemption effective date.

    *)
  3. expirationDate : Timestamp.t option;
    (*

    The tax exemption expiration date.

    *)
  4. status : EntityExemptionAccountStatus.t option;
    (*

    The tax exemption status.

    *)
  5. systemEffectiveDate : Timestamp.t option;
    (*

    The tax exemption recording time in the TaxSettings system.

    *)
  6. taxExemptionType : TaxExemptionType.t option;
    (*

    The tax exemption type.

    *)
}
Sourceval make : ?authority:??? -> ?effectiveDate:??? -> ?expirationDate:??? -> ?status:??? -> ?systemEffectiveDate:??? -> ?taxExemptionType:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `Enum of string | `Structure of (string * [> `List of [> `Structure of (string * [> `String of CountryCode.t ]) list ] list | `String of CountryCode.t ]) list | `Timestamp of Timestamp.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