Class: Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ListUserEventsResponse
- Inherits:
-
Object
- Object
- Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ListUserEventsResponse
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/recommendationengine_v1beta1/classes.rb,
lib/google/apis/recommendationengine_v1beta1/representations.rb,
lib/google/apis/recommendationengine_v1beta1/representations.rb
Overview
Response message for ListUserEvents method.
Instance Attribute Summary collapse
-
#next_page_token ⇒ String
If empty, the list is complete.
-
#user_events ⇒ Array<Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1UserEvent>
The user events.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleCloudRecommendationengineV1beta1ListUserEventsResponse
constructor
A new instance of GoogleCloudRecommendationengineV1beta1ListUserEventsResponse.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleCloudRecommendationengineV1beta1ListUserEventsResponse
Returns a new instance of GoogleCloudRecommendationengineV1beta1ListUserEventsResponse.
956 957 958 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 956 def initialize(**args) update!(**args) end |
Instance Attribute Details
#next_page_token ⇒ String
If empty, the list is complete. If nonempty, the token to pass to the next
request's ListUserEvents.page_token.
Corresponds to the JSON property nextPageToken
949 950 951 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 949 def next_page_token @next_page_token end |
#user_events ⇒ Array<Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1UserEvent>
The user events.
Corresponds to the JSON property userEvents
954 955 956 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 954 def user_events @user_events end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
961 962 963 964 |
# File 'lib/google/apis/recommendationengine_v1beta1/classes.rb', line 961 def update!(**args) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @user_events = args[:user_events] if args.key?(:user_events) end |