class Google::Apis::VaultV1::UserInfo
User's information.
Attributes
display_name[RW]
The displayed name of the user. Corresponds to the JSON property `displayName` @return [String]
email[RW]
The email address of the user. Corresponds to the JSON property `email` @return [String]
Public Class Methods
new(**args)
click to toggle source
# File lib/google/apis/vault_v1/classes.rb, line 1854 def initialize(**args) update!(**args) end
Public Instance Methods
update!(**args)
click to toggle source
Update properties of this object
# File lib/google/apis/vault_v1/classes.rb, line 1859 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email = args[:email] if args.key?(:email) end