Smartswitch
Currency.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 #include <Common.ice>
10 
11 module Smartswitch
12 {
13  module Billing
14  {
18  interface Currency
19  {
25  idempotent string getName();
26 
37  idempotent DoubleOpt getRate(string time);
38  };
39  };
40 };
41 
42 #endif
sequence< double > DoubleOpt
Definition: Common.ice:10
Definition: AccessException.ice:7
This interface allows to access the Currency entity.
Definition: Currency.ice:18