Show / Hide Table of Contents

Class GetExampleRequest

Request message for GetExample

Inheritance
System.Object
GetExampleRequest
Implements
IMessage<GetExampleRequest>
System.IEquatable<GetExampleRequest>
IDeepCloneable<GetExampleRequest>
Google.Protobuf.IBufferMessage
IMessage
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 GetExampleRequest : IMessage<GetExampleRequest>, IEquatable<GetExampleRequest>, IDeepCloneable<GetExampleRequest>, IBufferMessage, IMessage

Constructors

GetExampleRequest()

Declaration
public GetExampleRequest()

GetExampleRequest(GetExampleRequest)

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

Properties

ExampleName

ExampleName-typed view over the Name resource name property.

Declaration
public ExampleName ExampleName { get; set; }
Property Value
Type Description
ExampleName

Filter

Optional. An expression for filtering Examples. 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

Name

Required. Name of example, format: projects/{project_id}/datasets/{dataset_id}/annotatedDatasets/ {annotated_dataset_id}/examples/{example_id}

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
Back to top