Class: Google::Apis::AdminDirectoryV1::ChromeOsDevice::RecentUser

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/admin_directory_v1/classes.rb,
generated/google/apis/admin_directory_v1/representations.rb,
generated/google/apis/admin_directory_v1/representations.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ RecentUser

Returns a new instance of RecentUser.



1082
1083
1084
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1082

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#emailString

Email address of the user. Present only if the user type is managed Corresponds to the JSON property email

Returns:

  • (String)


1075
1076
1077
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1075

def email
  @email
end

#typeString

The type of the user Corresponds to the JSON property type

Returns:

  • (String)


1080
1081
1082
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1080

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



1087
1088
1089
1090
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 1087

def update!(**args)
  @email = args[:email] if args.key?(:email)
  @type = args[:type] if args.key?(:type)
end