C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
FixedRateCurrencyConverter.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Layers
5{
14 [NotSaveable]
16 {
17 #region Public Properties
25 [DataMember(Order = 20)]
26 [NotNull]
27 [NotEmpty]
28 public string in_currency { get; set; }
29
31 [DataMember(Order = 21)]
32 [NotNull]
33 [NotEmpty]
34 public string out_currency { get; set; }
35
39 [DataMember(Order = 5)]
40 public double rate { get; set; }
41 #endregion Public Properties
42 }
43}
A structure that can be used to change the currency of a loss stream from one currency to another at ...
string in_currency
The currency this converter will convert from. Warning: All input Layer_WithLossSets....
double rate
The fixed rate to use in converting losses from in_currency to out_currency. All input losses will be...
string out_currency
The currency this converter will convert to at a fixed rate.
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...