C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
IAPIResource.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
4
5namespace AnalyzeRe
6{
8 public interface IAPIResource : IAPIType, IEndpoint
9 {
12 [DataMember(Order = 2)]
14 string id { get; set; }
15
19 string collection_name { get; }
20 }
21}
Describes a collection of resources which can be listed.
Specifies that a property is generated by the server and should not be specified on the client side d...
Describes an endpoint on the server that can be interacted with. Inheriting from this interface means...
Definition IEndpoint.cs:10
Interface for Base class used by all resources.
string collection_name
The relative path from the root of the API at which the collection of resources of this type reside.
Interface shared by all object types and resources returned by the Analyze Re server.
Definition IAPIType.cs:6