Show / Hide Table of Contents

Class SearchExampleComparisonsRequest

Request message of SearchExampleComparisons.

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

Constructors

SearchExampleComparisonsRequest()

Declaration
public SearchExampleComparisonsRequest()

SearchExampleComparisonsRequest(SearchExampleComparisonsRequest)

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

Properties

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 the [nextPageToken][SearchExampleComparisons.next_page_token] of the response to a previous search rquest.

If you don't specify this field, the API call requests the first page of the search.

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

Parent

Required. Name of the [Evaluation][google.cloud.datalabeling.v1beta1.Evaluation] resource to search for example comparisons from. Format:

"projects/<var>{project_id}</var>/datasets/<var>{dataset_id}</var>/evaluations/<var>{evaluation_id}</var>"

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

ParentAsEvaluationName

EvaluationName-typed view over the Parent resource name property.

Declaration
public EvaluationName ParentAsEvaluationName { get; set; }
Property Value
Type Description
EvaluationName
Back to top