Show / Hide Table of Contents

Class ListDeliveryVehiclesResponse

The ListDeliveryVehicles response message.

Inheritance
object
ListDeliveryVehiclesResponse
Implements
IMessage<ListDeliveryVehiclesResponse>
IEquatable<ListDeliveryVehiclesResponse>
IDeepCloneable<ListDeliveryVehiclesResponse>
IBufferMessage
IMessage
IPageResponse<DeliveryVehicle>
IEnumerable<DeliveryVehicle>
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 ListDeliveryVehiclesResponse : IMessage<ListDeliveryVehiclesResponse>, IEquatable<ListDeliveryVehiclesResponse>, IDeepCloneable<ListDeliveryVehiclesResponse>, IBufferMessage, IMessage, IPageResponse<DeliveryVehicle>, IEnumerable<DeliveryVehicle>, IEnumerable

Constructors

ListDeliveryVehiclesResponse()

Declaration
public ListDeliveryVehiclesResponse()

ListDeliveryVehiclesResponse(ListDeliveryVehiclesResponse)

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

Properties

DeliveryVehicles

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

Declaration
public RepeatedField<DeliveryVehicle> DeliveryVehicles { get; }
Property Value
Type Description
RepeatedField<DeliveryVehicle>

NextPageToken

You can pass this token in the ListDeliveryVehiclesRequest to continue to list results. When all of the results are returned, this field won't be in the response, or it will be an empty string.

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

TotalSize

The total number of delivery vehicles 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<DeliveryVehicle> GetEnumerator()
Returns
Type Description
IEnumerator<DeliveryVehicle>
Implements
IEnumerable<T>.GetEnumerator()
In this article
Back to top Generated by DocFX