Class: Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse
- Inherits:
-
Object
- Object
- Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse
- 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
-
#feedback_entries ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeedbackEntry>
The page of FeedbackEntries matching the request.
-
#next_page_token ⇒ String
A token to retrieve the next page.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse
constructor
A new instance of GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse
Returns a new instance of GoogleCloudAiplatformV1beta1ListFeedbackEntriesResponse.
31982 31983 31984 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31982 def initialize(**args) update!(**args) end |
Instance Attribute Details
#feedback_entries ⇒ Array<Google::Apis::AiplatformV1beta1::GoogleCloudAiplatformV1beta1FeedbackEntry>
The page of FeedbackEntries matching the request.
Corresponds to the JSON property feedbackEntries
31974 31975 31976 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31974 def feedback_entries @feedback_entries end |
#next_page_token ⇒ String
A token to retrieve the next page. Absence of this field indicates there are
no subsequent pages.
Corresponds to the JSON property nextPageToken
31980 31981 31982 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31980 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
31987 31988 31989 31990 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 31987 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 |