Show / Hide Table of Contents

Class ListAnnotationSpecSetsResponse

Results of listing annotation spec set under a project.

Inheritance
System.Object
ListAnnotationSpecSetsResponse
Implements
IMessage<ListAnnotationSpecSetsResponse>
System.IEquatable<ListAnnotationSpecSetsResponse>
IDeepCloneable<ListAnnotationSpecSetsResponse>
Google.Protobuf.IBufferMessage
IMessage
IPageResponse<AnnotationSpecSet>
System.Collections.Generic.IEnumerable<AnnotationSpecSet>
System.Collections.IEnumerable
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 ListAnnotationSpecSetsResponse : IMessage<ListAnnotationSpecSetsResponse>, IEquatable<ListAnnotationSpecSetsResponse>, IDeepCloneable<ListAnnotationSpecSetsResponse>, IBufferMessage, IMessage, IPageResponse<AnnotationSpecSet>, IEnumerable<AnnotationSpecSet>, IEnumerable

Constructors

ListAnnotationSpecSetsResponse()

Declaration
public ListAnnotationSpecSetsResponse()

ListAnnotationSpecSetsResponse(ListAnnotationSpecSetsResponse)

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

Properties

AnnotationSpecSets

The list of annotation spec sets.

Declaration
public RepeatedField<AnnotationSpecSet> AnnotationSpecSets { get; }
Property Value
Type Description
RepeatedField<AnnotationSpecSet>

NextPageToken

A token to retrieve next page of results.

Declaration
public string NextPageToken { get; set; }
Property Value
Type Description
System.String
Implements
IPageResponse<TResource>.NextPageToken

Methods

GetEnumerator()

Returns an enumerator that iterates through the resources in this response.

Declaration
public IEnumerator<AnnotationSpecSet> GetEnumerator()
Returns
Type Description
System.Collections.Generic.IEnumerator<AnnotationSpecSet>
Implements
System.Collections.Generic.IEnumerable<T>.GetEnumerator()

Explicit Interface Implementations

IEnumerable.GetEnumerator()

Declaration
IEnumerator IEnumerable.GetEnumerator()
Returns
Type Description
System.Collections.IEnumerator
Implements
System.Collections.IEnumerable.GetEnumerator()
Back to top