C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
FixedDatePayment.cs
Go to the documentation of this file.
1using System;
2using System.Collections.Generic;
3using System.Runtime.Serialization;
4
6
7namespace AnalyzeRe.Layers
8{
32 {
33 #region Public Properties
38 [DataMember(Order = 20)]
39 [NotEmpty, NotNull]
40 public List<double> payments { get; set; } = new List<double>();
41
46 [DataMember(Order = 21)]
47 [NotEmpty, NotNull]
48 public List<DateTime> payment_dates { get; set; } = new List<DateTime>();
49 #endregion Public Properties
50 }
51}
A "delayed payment" payment pattern models claims being paid in instalments at specific dates followi...
List< DateTime > payment_dates
A list of date-times on which payments will be made.
List< double > payments
A list of fractional amounts, denoting how a loss amount will be split into payments....
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...