class Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1ListPredictionApiKeyRegistrationsResponse

Response message for the `ListPredictionApiKeyRegistrations`.

Attributes

next_page_token[RW]

If empty, the list is complete. If nonempty, pass the token to the next request's `ListPredictionApiKeysRegistrationsRequest.pageToken`. Corresponds to the JSON property `nextPageToken` @return [String]

prediction_api_key_registrations[RW]

The list of registered API keys. Corresponds to the JSON property `predictionApiKeyRegistrations` @return [Array<Google::Apis::RecommendationengineV1beta1::GoogleCloudRecommendationengineV1beta1PredictionApiKeyRegistration>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/recommendationengine_v1beta1/classes.rb, line 930
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 935
def update!(**args)
  @next_page_token = args[:next_page_token] if args.key?(:next_page_token)
  @prediction_api_key_registrations = args[:prediction_api_key_registrations] if args.key?(:prediction_api_key_registrations)
end