Show / Hide Table of Contents

Class CreateInstructionRequest

Request message for CreateInstruction.

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

Constructors

CreateInstructionRequest()

Declaration
public CreateInstructionRequest()

CreateInstructionRequest(CreateInstructionRequest)

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

Properties

Instruction

Required. Instruction of how to perform the labeling task.

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

Parent

Required. Instruction resource parent, format: projects/{project_id}

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

ParentAsProjectName

ProjectName-typed view over the Parent resource name property.

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