class Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ListUserEventsResponse

Response message for ListUserEvents method.

Attributes

next_page_token[RW]

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` @return [String]

user_events[RW]

The user events. Corresponds to the JSON property `userEvents` @return [Array<Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1UserEvent>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 956
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# 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