C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
IEndpoint.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
3
4namespace AnalyzeRe.APITypes
5{
9 public interface IEndpoint
10 {
13 string Path { get; }
14 }
15}
Describes a collection of resources which can be listed.
Describes an endpoint on the server that can be interacted with. Inheriting from this interface means...
Definition IEndpoint.cs:10
string Path
The relative path to this endpoint from the root URL.
Definition IEndpoint.cs:13