class Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1ListFeedbackMessagesResponse

Results for listing FeedbackMessages.

Attributes

feedback_messages[RW]

The list of feedback messages to return. Corresponds to the JSON property `feedbackMessages` @return [Array<Google::Apis::DatalabelingV1beta1::GoogleCloudDatalabelingV1beta1FeedbackMessage>]

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 3607
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 3612
def update!(**args)
  @feedback_messages = args[:feedback_messages] if args.key?(:feedback_messages)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end