Show / Hide Table of Contents

Class ListDataItemsRequest

Request message for ListDataItems.

Inheritance
System.Object
ListDataItemsRequest
Implements
IMessage<ListDataItemsRequest>
System.IEquatable<ListDataItemsRequest>
IDeepCloneable<ListDataItemsRequest>
Google.Protobuf.IBufferMessage
IMessage
IPageRequest
Inherited Members
System.Object.ToString()
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
Namespace: Google.Cloud.DataLabeling.V1Beta1
Assembly: Google.Cloud.DataLabeling.V1Beta1.dll
Syntax
public sealed class ListDataItemsRequest : IMessage<ListDataItemsRequest>, IEquatable<ListDataItemsRequest>, IDeepCloneable<ListDataItemsRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

ListDataItemsRequest()

Declaration
public ListDataItemsRequest()

ListDataItemsRequest(ListDataItemsRequest)

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

Properties

Filter

Optional. Filter is not supported at this moment.

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

PageSize

Optional. Requested page size. Server may return fewer results than requested. Default value is 100.

Declaration
public int PageSize { get; set; }
Property Value
Type Description
System.Int32
Implements
IPageRequest.PageSize

PageToken

Optional. A token identifying a page of results for the server to return. Typically obtained by [ListDataItemsResponse.next_page_token][google.cloud.datalabeling.v1beta1.ListDataItemsResponse.next_page_token] of the previous [DataLabelingService.ListDataItems] call. Return first page if empty.

Declaration
public string PageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageRequest.PageToken

Parent

Required. Name of the dataset to list data items, format: projects/{project_id}/datasets/{dataset_id}

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

ParentAsDatasetName

DatasetName-typed view over the Parent resource name property.

Declaration
public DatasetName ParentAsDatasetName { get; set; }
Property Value
Type Description
DatasetName
Back to top