Class ListThreadsResponse
public class ListThreadsResponse : IDirectResponseSchema
- Inheritance
-
ListThreadsResponse
- Implements
-
IDirectResponseSchema
- Inherited Members
Constructors
ListThreadsResponse()
public ListThreadsResponse()
Properties
ETag
The ETag of the item.
public virtual string ETag { get; set; }
Property Value
NextPageToken
Page token to retrieve the next page of results in the list.
public virtual string NextPageToken { get; set; }
Property Value
ResultSizeEstimate
Estimated total number of results.
public virtual long? ResultSizeEstimate { get; set; }
Property Value
- long?
Threads
List of threads. Note that each thread resource does not contain a list of messages
. The list of
messages
for a given thread can be fetched using the threads.get method.
public virtual IList<Thread> Threads { get; set; }