class Google::Apis::PredictionV1_6::List
Attributes
items[RW]
List of models. Corresponds to the JSON property `items` @return [Array<Google::Apis::PredictionV1_6::Insert2>]
kind[RW]
What kind of resource this is. Corresponds to the JSON property `kind` @return [String]
next_page_token[RW]
Pagination token to fetch the next page, if one exists. Corresponds to the JSON property `nextPageToken` @return [String]
self_link[RW]
A URL to re-request this resource. Corresponds to the JSON property `selfLink` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/prediction_v1_6/classes.rb, line 637 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/prediction_v1_6/classes.rb, line 642 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @next_page_token = args[:next_page_token] if args.key?(:next_page_token) @self_link = args[:self_link] if args.key?(:self_link) end