class Google::Apis::AdminDirectoryV1::ChromeOsDevice::RecentUser
List of recent device users, in descending order, by last login time.
Attributes
email[RW]
The user's email address. This is only present if the user type is ` USER_TYPE_MANAGED`. Corresponds to the JSON property `email` @return [String]
type[RW]
The type of the user. Corresponds to the JSON property `type` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/admin_directory_v1/classes.rb, line 1213 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/admin_directory_v1/classes.rb, line 1218 def update!(**args) @email = args[:email] if args.key?(:email) @type = args[:type] if args.key?(:type) end