Show / Hide Table of Contents

Class ListTasksResponse

The ListTasks response that contains the set of Tasks that meet the filter criteria in the ListTasksRequest.

Inheritance
object
ListTasksResponse
Implements
IMessage<ListTasksResponse>
IEquatable<ListTasksResponse>
IDeepCloneable<ListTasksResponse>
IBufferMessage
IMessage
IPageResponse<Task>
IEnumerable<Task>
IEnumerable
Inherited Members
object.GetHashCode()
object.GetType()
object.ToString()
Namespace: Google.Maps.FleetEngine.Delivery.V1
Assembly: Google.Maps.FleetEngine.Delivery.V1.dll
Syntax
public sealed class ListTasksResponse : IMessage<ListTasksResponse>, IEquatable<ListTasksResponse>, IDeepCloneable<ListTasksResponse>, IBufferMessage, IMessage, IPageResponse<Task>, IEnumerable<Task>, IEnumerable

Constructors

ListTasksResponse()

Declaration
public ListTasksResponse()

ListTasksResponse(ListTasksResponse)

Declaration
public ListTasksResponse(ListTasksResponse other)
Parameters
Type Name Description
ListTasksResponse other

Properties

NextPageToken

Pass this token in the ListTasksRequest to continue to list results. If all results have been returned, then this field is either an empty string, or it doesn't appear in the response.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
string
Implements
IPageResponse<TResource>.NextPageToken

Tasks

The set of Tasks that meet the requested filtering criteria. When no filter is specified, the request returns all tasks. A successful response can also be empty. An empty response indicates that no Tasks were found meeting the requested filter criteria.

Declaration
public RepeatedField<Task> Tasks { get; }
Property Value
Type Description
RepeatedField<Task>

TotalSize

The total number of Tasks that match the request criteria, across all pages.

Declaration
public long TotalSize { get; set; }
Property Value
Type Description
long

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<Task> GetEnumerator()
Returns
Type Description
IEnumerator<Task>
Implements
IEnumerable<T>.GetEnumerator()
In this article
Back to top Generated by DocFX