Show / Hide Table of Contents

Class ListInstructionsRequest

Request message for ListInstructions.

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

Constructors

ListInstructionsRequest()

Declaration
public ListInstructionsRequest()

ListInstructionsRequest(ListInstructionsRequest)

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

Properties

Filter

Optional. Filter is not supported at this moment.

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

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

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