class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ListFeedbackThreadsResponse
Results for listing FeedbackThreads.
Attributes
feedback_threads[RW]
The list of feedback threads to return. Corresponds to the JSON property `feedbackThreads` @return [Array<Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1FeedbackThread>]
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 3632 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 3637 def update!(**args) @feedback_threads = args[:feedback_threads] if args.key?(:feedback_threads) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) end