C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
CollectionResponse[T].cs
Go to the documentation of this file.
1using System.Collections.Generic;
2using System.Runtime.Serialization;
3
4namespace AnalyzeRe
5{
7 public class CollectionResponse<T> : ICollectionResponse<T> where T : IAPIType
8 {
9 #region Public Properties
11 [DataMember(Order = 11)]
12 public CollectionResponseMeta meta { get; set; }
13
15 [DataMember(Order = 12)]
16 public IEnumerable<T> items { get; set; }
17 #endregion Public Properties
18 }
19}
The metadata associated with a collection get response.
Implements the reference entity interface, with support for resolving references using lazy loading.
IEnumerable< T > items
The collection items returned by this get response.
CollectionResponseMeta meta
The metadata associated with this collection get response.
Interface shared by all object types and resources returned by the Analyze Re server.
Definition IAPIType.cs:6
Covariant interface for the generic collection response type.