C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
NestedLayerLossSet.cs
Go to the documentation of this file.
1using System;
2using System.Runtime.Serialization;
4
5namespace AnalyzeRe.LossSets
6{
11 [Obsolete("If you wish to attach a layer as a source to another layer, please use a Nested Layer.")]
13 {
14 #region Public Properties
16 [DataMember(Order = 20)]
17 [NotNull]
18 public IReference<ILayer> layer { get; set; }
19 #endregion Public Properties
20 }
21}
Base class for all LossSet sub-types. A LossSet is a resource that generates sample (trial) losses wh...
Definition LossSet.cs:13
Representation of a Nested layer loss set, which represents any loss set whose losses are derived fro...
IReference< ILayer > layer
The layer whose losses are being forwarded by this loss set.
Base interface for all reference entities.