Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/aiplatform_v1beta1/classes.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb,
lib/google/apis/aiplatform_v1beta1/representations.rb

Overview

Response message for ListFeedbackEntries.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse

Returns a new instance of GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse.



32521
32522
32523
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32521

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#feedback_entriesArray<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeedbackEntry>

The page of FeedbackEntries matching the request. Corresponds to the JSON property feedbackEntries



32513
32514
32515
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32513

def feedback_entries
  @feedback_entries
end

#next_page_tokenString

A token to retrieve the next page. Absence of this field indicates there are no subsequent pages. Corresponds to the JSON property nextPageToken

Returns:

  • (String)


32519
32520
32521
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32519

def next_page_token
  @next_page_token
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



32526
32527
32528
32529
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 32526

def update!(**args)
  @feedback_entries = args[:feedback_entries] if args.key?(:feedback_entries)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
end