class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ListAnnotationSpecSetsResponse

Results of listing annotation spec set under a project.

Attributes

annotation_spec_sets[RW]

The list of annotation spec sets. Corresponds to the JSON property `annotationSpecSets` @return [Array<Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1AnnotationSpecSet>]

next_page_token[RW]

A token to retrieve next page of results. Corresponds to the JSON property `nextPageToken` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3482
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/datalabeling_v1beta1/classes.rb, line 3487
def update!(**args)
  @annotation_spec_sets = args[:annotation_spec_sets] if args.key?(:annotation_spec_sets)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end