C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
Layer.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
5
6// ReSharper disable once CheckNamespace (Type is common enough to be on root namespace)
7namespace AnalyzeRe
8{
12 {
13 #region APIResource Interface Members
15 public static readonly string CLASS_COLLECTION_NAME = "layers";
18 public override string collection_name => CLASS_COLLECTION_NAME;
19 #endregion APIResource Interface Members
20 }
21}
Describes a collection of resources which can be listed.
Stored resource that is polymorphic (has more than one sub-type).
Abstract representation of a layer. This resource type cannot be instantiated instead derived resourc...
Definition Layer.cs:12
override string collection_name
The collection endpoint at which resources of this type reside on the server.
Definition Layer.cs:18
static readonly string CLASS_COLLECTION_NAME
The collection endpoint at which resources of this type reside on the server.
Definition Layer.cs:15
Abstract representation of a layer.
Definition ILayer.cs:7