C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
IReference.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
4namespace AnalyzeRe
5{
7 public interface IReference : IAPIType
8 {
12 [DataMember(Order = 1)]
13 string reference_type { get; }
14
16 [DataMember(Order = 2)]
17 string ref_id { get; }
18
20 [DataMember(Order = 3)]
22 string href { get; }
23 }
24}
Specifies that a property is generated by the server and should not be specified on the client side d...
Interface shared by all object types and resources returned by the Analyze Re server.
Definition IAPIType.cs:6
Base interface for all reference entities.
string ref_id
The id of the object being referred to.
Definition IReference.cs:17
string reference_type
In cases where a model can reference resources belonging to one of a number of collections,...
Definition IReference.cs:13
string href
The HREF that can be used to retrieve the object being referred to.
Definition IReference.cs:22