2using System.Collections.Generic;
3using System.Runtime.Serialization;
33 #region Public Properties
38 [DataMember(Order = 20)]
40 public List<double>
payments {
get;
set; } =
new List<double>();
46 [DataMember(Order = 21)]
48 public List<DateTime>
payment_dates {
get;
set; } =
new List<DateTime>();
49 #endregion Public Properties
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...