C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
AnalyzeRe.Layers.AggregateQuotaShare Class Referencesealed

Representation of a Quota Share contract that is limited in annual payouts. More...

Public Member Functions

virtual T ShallowCopy< T > ()
 Create a shallow copy of this object.

See also
ExtensionMethods.DeepCopy<T>

for a serializer-based copy method.

 

Static Public Attributes

static readonly string CLASS_COLLECTION_NAME = "layers"
 The collection endpoint at which resources of this type reside on the server.
 

Protected Member Functions

virtual void AfterMembersCloned (APIType originalResource)
 Invoked following construction if the current instance has been created using a member-wise clone of some other instance. Override if your derived APIType class contains some members that should not be cloned.
 

Properties

MonetaryUnit aggregate_attachment [get, set]
 The aggregate attachment applied by this layer.
 
MonetaryUnit aggregate_limit [get, set]
 The aggregate limit applied by this layer.
 
static string APITypeName [get]
 Can be used to get the API type name in a static context.
 
override string collection_name [get]
 The collection endpoint at which resources of this type reside on the server.
 
DateTime? created [get, set]
 The date and time when the resource was created on the system.
 
string description [get, set]
 A user-friendly description of the resource.
 
MonetaryUnit event_limit [get, set]
 The maximum amount to be covered by the Quota Share per event.
 
DateTime? expiry_date [get, set]
 The date and time when effect of the contract expires. Used to determine which losses impact this layer and their applied order. Set to null to use all losses in their defined sequence.
 
List< Feefees = new List<Fee>() [get, set]
 The fees that are applied to this layer's trials.
 
string id [get, set]
 The resource's unique identifier. It will be used in the request URL when requesting the resource from the server.
 
DateTime? inception_date [get, set]
 The date and time when the contract takes effect. Used to determine which losses impact this layer and their applied order. Set to null to use all losses in their defined sequence.
 
List< IReference< LossSet > > loss_sets [get, set]
 The list of LossSet references that is associated with the specific layer.
 
Dictionary< string, object > meta_data = new Dictionary<string, object>() [get, set]
 Any user-defined metadata for this layer.
 
DateTime? modified [get, set]
 The date and time when the resource was last modified on the system.
 
virtual double participation [get, set]
 The amount of participation of the reinsurer in this deal as the percentage of loss, premium, and brokerage.
 
string Path [get]
 The relative path to this endpoint from the root URL.
 
Policy policy [get, set]
 The Policy that overrides the default layer behaviour for forwarding and transforming loss records.
 
MonetaryUnit premium [get, set]
 The premium expected to be written by this layer excluding reinstatement premiums.
 
string type [get]
 The server name for this type of resource.
 

Detailed Description

Representation of a Quota Share contract that is limited in annual payouts.

Definition at line 9 of file AggregateQuotaShare.cs.

Inheritance diagram for AnalyzeRe.Layers.AggregateQuotaShare:
AnalyzeRe.Layers.QuotaShare AnalyzeRe.Layers.ILayer_WithAggregateTerms AnalyzeRe.Layers.Layer_WithTerms AnalyzeRe.Layers.ILayer_WithOccurrenceTerms AnalyzeRe.Layers.ILayer_WithTerms AnalyzeRe.Layers.Layer_WithLossSets AnalyzeRe.Layers.ILayer_WithTerms AnalyzeRe.Layers.ILayer_WithTerms AnalyzeRe.Layers.ILayer_WithLossSets AnalyzeRe.Layer AnalyzeRe.Layers.ILayer_WithLossSets AnalyzeRe.Layers.ILayer_WithLossSets AnalyzeRe.Layers.ILayer_WithLossSets AnalyzeRe.ILayer AnalyzeRe.APITypes.IAPI_Polymorphic AnalyzeRe.APITypes.IStoredAPIResource AnalyzeRe.ILayerSource AnalyzeRe.ILayer AnalyzeRe.ILayer AnalyzeRe.ILayer AnalyzeRe.ILayer AnalyzeRe.APITypes.StoredAPIResource_Polymorphic

Member Function Documentation

◆ AfterMembersCloned()

virtual void AnalyzeRe.APIType.AfterMembersCloned ( APIType  originalResource)
inlineprotectedvirtualinherited

Invoked following construction if the current instance has been created using a member-wise clone of some other instance. Override if your derived APIType class contains some members that should not be cloned.

Overriding implementations should be sure to invoke base.AfterMembersCloned().

A sane question for a code reviewer to ask might be: "Why not avoid copying those members in the first place?" The answer is that there is no framework-supported method of excluding members from a MemberwiseClone. The only officially supported solution is to not use the object.MemberwiseClone method at all and instead have each class implement it's own Copy method. In our case, most objects have no need to specialize their copy implementation (even though they could - the ShallowCopy<T> method is marked virtual). It's simpler to simply "correct" any special-case members after the fact, and requires less error-prone code than if the code were responsible for ensuring no members were missed in a copy. It's also faster than any reflection-based approach, even though such an approach could benefit from custom attributes meant to exclude certain members from copying.

Reimplemented in AnalyzeRe.APITypes.APIResource_WithDataEndpoint, AnalyzeRe.APIResourceView.BaseAPIResourceView, AnalyzeRe.Distributions.CustomDistribution, AnalyzeRe.LossSets.LossSet_WithData, AnalyzeRe.Optimization.Candidate, AnalyzeRe.Optimization.OptimizationView, and AnalyzeRe.StaticSimulation.

Definition at line 37 of file APIType.cs.

◆ ShallowCopy< T >()

virtual T AnalyzeRe.APIType.ShallowCopy< T > ( )
inlinevirtualinherited

Create a shallow copy of this object.

See also
ExtensionMethods.DeepCopy<T>

for a serializer-based copy method.

Returns
A shallow copy of this object.

If this object contains any members that reference the current object (this), the class should override this method to avoid cloning a reference to the old class.

Implements AnalyzeRe.IAPIType.

Type Constraints
T :IAPIType 

Definition at line 14 of file APIType.cs.

Member Data Documentation

◆ CLASS_COLLECTION_NAME

readonly string AnalyzeRe.Layer.CLASS_COLLECTION_NAME = "layers"
staticinherited

The collection endpoint at which resources of this type reside on the server.

Definition at line 15 of file Layer.cs.

Property Documentation

◆ aggregate_attachment

MonetaryUnit AnalyzeRe.Layers.AggregateQuotaShare.aggregate_attachment
getset

The aggregate attachment applied by this layer.

Implements AnalyzeRe.Layers.ILayer_WithAggregateTerms.

Definition at line 29 of file AggregateQuotaShare.cs.

◆ aggregate_limit

MonetaryUnit AnalyzeRe.Layers.AggregateQuotaShare.aggregate_limit
getset

The aggregate limit applied by this layer.

Implements AnalyzeRe.Layers.ILayer_WithAggregateTerms.

Definition at line 17 of file AggregateQuotaShare.cs.

◆ APITypeName

string AnalyzeRe.APITypes.StoredAPIResource_Polymorphic.APITypeName
staticgetinherited

Can be used to get the API type name in a static context.

Definition at line 17 of file StoredAPIResource_Polymorphic.cs.

◆ collection_name

override string AnalyzeRe.Layer.collection_name
getinherited

The collection endpoint at which resources of this type reside on the server.

Implements AnalyzeRe.IAPIResource.

Definition at line 18 of file Layer.cs.

◆ created

DateTime? AnalyzeRe.APITypes.StoredAPIResource.created
getsetinherited

The date and time when the resource was created on the system.

Implements AnalyzeRe.APITypes.IStoredAPIResource.

Definition at line 19 of file StoredAPIResource.cs.

◆ description

string AnalyzeRe.APITypes.StoredAPIResource.description
getsetinherited

A user-friendly description of the resource.

Implements AnalyzeRe.APITypes.IStoredAPIResource.

Definition at line 14 of file StoredAPIResource.cs.

◆ event_limit

MonetaryUnit AnalyzeRe.Layers.QuotaShare.event_limit
getsetinherited

The maximum amount to be covered by the Quota Share per event.

Definition at line 56 of file QuotaShare.cs.

◆ expiry_date

DateTime? AnalyzeRe.Layers.Layer_WithTerms.expiry_date
getsetinherited

The date and time when effect of the contract expires. Used to determine which losses impact this layer and their applied order. Set to null to use all losses in their defined sequence.

Implements AnalyzeRe.Layers.ILayer_WithTerms.

Definition at line 37 of file Layer_WithTerms.cs.

◆ fees

List<Fee> AnalyzeRe.Layers.Layer_WithTerms.fees = new List<Fee>()
getsetinherited

The fees that are applied to this layer's trials.

Implements AnalyzeRe.Layers.ILayer_WithTerms.

Definition at line 49 of file Layer_WithTerms.cs.

◆ id

string AnalyzeRe.APIResource.id
getsetinherited

The resource's unique identifier. It will be used in the request URL when requesting the resource from the server.

Implements AnalyzeRe.IAPIResource.

Definition at line 16 of file APIResource.cs.

◆ inception_date

DateTime? AnalyzeRe.Layers.Layer_WithTerms.inception_date
getsetinherited

The date and time when the contract takes effect. Used to determine which losses impact this layer and their applied order. Set to null to use all losses in their defined sequence.

Implements AnalyzeRe.Layers.ILayer_WithTerms.

Definition at line 29 of file Layer_WithTerms.cs.

◆ loss_sets

List<IReference<LossSet> > AnalyzeRe.Layers.Layer_WithLossSets.loss_sets
getsetinherited

The list of LossSet references that is associated with the specific layer.

Implements AnalyzeRe.Layers.ILayer_WithLossSets.

Definition at line 15 of file Layer_WithLossSets.cs.

◆ meta_data

Dictionary<string, object> AnalyzeRe.APITypes.StoredAPIResource.meta_data = new Dictionary<string, object>()
getsetinherited

Any user-defined metadata for this layer.

Implements AnalyzeRe.APITypes.IStoredAPIResource.

Definition at line 30 of file StoredAPIResource.cs.

◆ modified

DateTime? AnalyzeRe.APITypes.StoredAPIResource.modified
getsetinherited

The date and time when the resource was last modified on the system.

Implements AnalyzeRe.APITypes.IStoredAPIResource.

Definition at line 24 of file StoredAPIResource.cs.

◆ participation

virtual double AnalyzeRe.Layers.Layer_WithTerms.participation
getsetinherited

The amount of participation of the reinsurer in this deal as the percentage of loss, premium, and brokerage.

Implements AnalyzeRe.Layers.ILayer_WithTerms.

Definition at line 20 of file Layer_WithTerms.cs.

◆ Path

string AnalyzeRe.APIResource.Path
getinherited

The relative path to this endpoint from the root URL.

The relative path to this endpoint from the root URL.

Exceptions
System.ArgumentExceptionIf this resource does not have an id.

Implements AnalyzeRe.APITypes.IEndpoint.

Definition at line 27 of file APIResource.cs.

◆ policy

Policy AnalyzeRe.Layers.Layer_WithLossSets.policy
getsetinherited

The Policy that overrides the default layer behaviour for forwarding and transforming loss records.

Implements AnalyzeRe.Layers.ILayer_WithLossSets.

Definition at line 20 of file Layer_WithLossSets.cs.

◆ premium

MonetaryUnit AnalyzeRe.Layers.Layer_WithTerms.premium
getsetinherited

The premium expected to be written by this layer excluding reinstatement premiums.

Implements AnalyzeRe.Layers.ILayer_WithTerms.

Definition at line 44 of file Layer_WithTerms.cs.

◆ type

string AnalyzeRe.APITypes.StoredAPIResource_Polymorphic.type
getinherited

The server name for this type of resource.

Implements AnalyzeRe.APITypes.IAPI_Polymorphic.

Definition at line 13 of file StoredAPIResource_Polymorphic.cs.


The documentation for this class was generated from the following file: