Show / Hide Table of Contents

Class ListTasksResponse

Response message for listing tasks using ListTasks.

Inheritance
System.Object
ListTasksResponse
Implements
Google.Apis.Requests.IDirectResponseSchema
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Google.Apis.CloudTasks.v2beta2.Data
Assembly: Google.Apis.CloudTasks.v2beta2.dll
Syntax
public class ListTasksResponse : IDirectResponseSchema

Properties

ETag

The ETag of the item.

Declaration
public virtual string ETag { get; set; }
Property Value
Type Description
System.String

NextPageToken

A token to retrieve next page of results. To return the next page of results, call ListTasks with this value as the page_token. If the next_page_token is empty, there are no more results.

Declaration
[JsonProperty("nextPageToken")]
public virtual string NextPageToken { get; set; }
Property Value
Type Description
System.String

Tasks

The list of tasks.

Declaration
[JsonProperty("tasks")]
public virtual IList<Task> Tasks { get; set; }
Property Value
Type Description
System.Collections.Generic.IList<Task>

Implements

Google.Apis.Requests.IDirectResponseSchema
In This Article
Back to top