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.
30968 30969 30970 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30968 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
30960 30961 30962 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30960 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
30966 30967 30968 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30966 def next_page_token @next_page_token end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
30973 30974 30975 30976 |
# File 'lib/google/apis/aiplatform_v1beta1/classes.rb', line 30973 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 |