Smartswitch
CurrencyAmount.ice
Go to the documentation of this file.
1 #pragma once
2 
3 [["python:pkgdir:Smartswitch/Billing"]]
4 
5 #include <Config.ice>
6 
7 #ifdef CONFIG_BILLING
8 
9 module Smartswitch
10 {
11  module Billing
12  {
17  {
18  string currency;
19  double amount;
20  };
21  sequence<CurrencyAmount> CurrencyAmountSequence;
22  };
23 };
24 
25 #endif
string currency
The Currency name.
Definition: CurrencyAmount.ice:18
Definition: AccessException.ice:7
double amount
The amount of money in a given Currency.
Definition: CurrencyAmount.ice:19
The struct defines an amount of money in a given Currency.
Definition: CurrencyAmount.ice:16
sequence< CurrencyAmount > CurrencyAmountSequence
Definition: CurrencyAmount.ice:21