class Google::Apis::AppstateV1::ListResponse
This is a JSON template to convert a list-response for app state.
Attributes
items[RW]
The app state data. Corresponds to the JSON property `items` @return [Array<Google::Apis::AppstateV1::GetResponse>]
kind[RW]
Uniquely identifies the type of this resource. Value is always the fixed string appstate#listResponse. Corresponds to the JSON property `kind` @return [String]
maximum_key_count[RW]
The maximum number of keys allowed for this user. Corresponds to the JSON property `maximumKeyCount` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File generated/google/apis/appstate_v1/classes.rb, line 83 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File generated/google/apis/appstate_v1/classes.rb, line 88 def update!(**args) @items = args[:items] if args.key?(:items) @kind = args[:kind] if args.key?(:kind) @maximum_key_count = args[:maximum_key_count] if args.key?(:maximum_key_count) end