Show / Hide Table of Contents

Class ListExamplesRequest

Request message for ListExamples.

Inheritance
System.Object
ListExamplesRequest
Implements
IMessage<ListExamplesRequest>
System.IEquatable<ListExamplesRequest>
IDeepCloneable<ListExamplesRequest>
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 ListExamplesRequest : IMessage<ListExamplesRequest>, IEquatable<ListExamplesRequest>, IDeepCloneable<ListExamplesRequest>, IBufferMessage, IMessage, IPageRequest

Constructors

ListExamplesRequest()

Declaration
public ListExamplesRequest()

ListExamplesRequest(ListExamplesRequest)

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

Properties

Filter

Optional. An expression for filtering Examples. For annotated datasets that have annotation spec set, filter by annotation_spec.display_name is supported. Format "annotation_spec.display_name = {display_name}"

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 [ListExamplesResponse.next_page_token][google.cloud.datalabeling.v1beta1.ListExamplesResponse.next_page_token] of the previous [DataLabelingService.ListExamples] call. Return first page if empty.

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

Parent

Required. Example resource parent.

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

ParentAsAnnotatedDatasetName

AnnotatedDatasetName-typed view over the Parent resource name property.

Declaration
public AnnotatedDatasetName ParentAsAnnotatedDatasetName { get; set; }
Property Value
Type Description
AnnotatedDatasetName
Back to top