Module Values.InvoiceCurrencyAmountSource

The amount charged after taxes, in the preferred currency.

Sourcetype nonrec t = {
  1. totalAmount : BasicString.t option;
    (*

    The invoice currency amount.

    *)
  2. totalAmountBeforeTax : BasicString.t option;
    (*

    Details about the invoice total amount before tax.

    *)
  3. currencyCode : CurrencyCode.t option;
    (*

    The currency dominion of the invoice document.

    *)
  4. amountBreakdown : AmountBreakdown.t option;
    (*

    Details about the invoice currency amount.

    *)
  5. currencyExchangeDetails : CurrencyExchangeDetails.t option;
    (*

    The details of currency exchange.

    *)
}
Sourceval make : ?totalAmount:??? -> ?totalAmountBeforeTax:??? -> ?currencyCode:??? -> ?amountBreakdown:??? -> ?currencyExchangeDetails:??? -> unit -> t
Sourceval to_value : t -> [> `Structure of (string * [> `String of BasicString.t | `Structure of (string * [> `String of BasicString.t | `Structure of (string * [> `List of [> `Structure of (string * [> `String of BasicString.t ]) list ] list | `String of BasicString.t ]) list ]) 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