Class: Google::Apis::AdminDirectoryV1::RecentUsers
- Inherits:
-
Object
- Object
- Google::Apis::AdminDirectoryV1::RecentUsers
- 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
Overview
List of recent device users, in descending order, by last login time.
Instance Attribute Summary collapse
-
#email ⇒ String
The user's email address.
-
#type ⇒ String
The type of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ RecentUsers
constructor
A new instance of RecentUsers.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ RecentUsers
Returns a new instance of RecentUsers.
2673 2674 2675 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2673 def initialize(**args) update!(**args) end |
Instance Attribute Details
#email ⇒ String
The user's email address. This is only present if the user type is
USER_TYPE_MANAGED
.
Corresponds to the JSON property email
2666 2667 2668 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2666 def email @email end |
#type ⇒ String
The type of the user.
Corresponds to the JSON property type
2671 2672 2673 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2671 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2678 2679 2680 2681 |
# File 'generated/google/apis/admin_directory_v1/classes.rb', line 2678 def update!(**args) @email = args[:email] if args.key?(:email) @type = args[:type] if args.key?(:type) end |