class Google::Apis::AndroidmanagementV1::MemoryInfo
Information about device memory and storage.
Attributes
total_internal_storage[RW]
Total internal storage on device in bytes. Corresponds to the JSON property `totalInternalStorage` @return [Fixnum]
total_ram[RW]
Total RAM on device in bytes. Corresponds to the JSON property `totalRam` @return [Fixnum]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 2106 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/androidmanagement_v1/classes.rb, line 2111 def update!(**args) @total_internal_storage = args[:total_internal_storage] if args.key?(:total_internal_storage) @total_ram = args[:total_ram] if args.key?(:total_ram) end