C# Client Library
A C# Client Library for the AnalyzeRe REST API
Loading...
Searching...
No Matches
CollectionResponseMeta.cs
Go to the documentation of this file.
1using System.Runtime.Serialization;
2
3namespace AnalyzeRe
4{
7 {
8 #region Public Properties
10 [DataMember(Order = 2)]
11 public long total_count { get; set; }
12
14 [DataMember(Order = 3)]
15 public long offset { get; set; }
16
18 [DataMember(Order = 4)]
19 public long limit { get; set; }
20 #endregion Public Properties
21 }
22}
Base class used by all types and resources.
Definition APIType.cs:8
The metadata associated with a collection get response.
long limit
The maximum number of results returned in this response.
long total_count
The total number of resources in this collection.
long offset
The number of results skipped before starting to return results.