Show / Hide Table of Contents

Class LabelTextRequest

Request message for LabelText.

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

Constructors

LabelTextRequest()

Declaration
public LabelTextRequest()

LabelTextRequest(LabelTextRequest)

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

Properties

BasicConfig

Required. Basic human annotation config.

Declaration
public HumanAnnotationConfig BasicConfig { get; set; }
Property Value
Type Description
HumanAnnotationConfig

Feature

Required. The type of text labeling task.

Declaration
public LabelTextRequest.Types.Feature Feature { get; set; }
Property Value
Type Description
LabelTextRequest.Types.Feature

Parent

Required. Name of the data set to request labeling task, 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

RequestConfigCase

Declaration
public LabelTextRequest.RequestConfigOneofCase RequestConfigCase { get; }
Property Value
Type Description
LabelTextRequest.RequestConfigOneofCase

TextClassificationConfig

Configuration for text classification task. One of text_classification_config and text_entity_extraction_config is required.

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

TextEntityExtractionConfig

Configuration for entity extraction task. One of text_classification_config and text_entity_extraction_config is required.

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