class Google::Apis::AndroidmanagementV1::MemoryEvent
An event related to memory and storage measurements.
Attributes
byte_count[RW]
The number of free bytes in the medium, or for EXTERNAL_STORAGE_DETECTED, the total capacity in bytes of the storage medium. Corresponds to the JSON property `byteCount` @return [Fixnum]
create_time[RW]
The creation time of the event. Corresponds to the JSON property `createTime` @return [String]
event_type[RW]
Event type. Corresponds to the JSON property `eventType` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/androidmanagement_v1/classes.rb, line 2080 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 2085 def update!(**args) @byte_count = args[:byte_count] if args.key?(:byte_count) @create_time = args[:create_time] if args.key?(:create_time) @event_type = args[:event_type] if args.key?(:event_type) end