C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
ICollectionResponse[T].cs
Go to the documentation of this file.
1using System.Collections.Generic;
2
3namespace AnalyzeRe
4{
6 public interface ICollectionResponse<out T> where T : IAPIType
7 {
10
12 IEnumerable<T> items { get; }
13 }
14}
The metadata associated with a 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.
CollectionResponseMeta meta
The metadata associated with this collection get response.
IEnumerable< T > items
The collection items returned by this get response.