C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
IndustryLossWarranty.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
4namespace AnalyzeRe.Layers
5{
10 {
11 #region Public Properties
13 [DataMember(Order = 20)]
14 [NotNull]
15 [GreaterThan(0, true)]
16 public MonetaryUnit trigger { get; set; }
17
19 [DataMember(Order = 21)]
20 [NotNull]
21 [GreaterThan(0, true)]
22 public MonetaryUnit payout { get; set; }
23
26 [DataMember(Order = 22)]
27 [GreaterThan(1, true)]
29 public int? nth { get; set; }
30 #endregion Public Properties
31 }
32}
Indicates that the property, if left null, will have a default value generated and filled in by the s...
Representation of an Industry Loss Warranty, which is a layer that triggers a payout (currently expre...
int? nth
The number of individual event occurrences that must equal or exceed the trigger before this Industry...
MonetaryUnit trigger
The occurrence loss amount which, when reached, triggers the payout.
MonetaryUnit payout
The amount paid out when the trigger is reached.
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...
Representation of a monetary value with a currency.