Class: Google::Apis::AlertcenterV1beta1::User
- Inherits:
-
Object
- Object
- Google::Apis::AlertcenterV1beta1::User
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/alertcenter_v1beta1/classes.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb,
lib/google/apis/alertcenter_v1beta1/representations.rb
Overview
A user.
Instance Attribute Summary collapse
-
#display_name ⇒ String
Display name of the user.
-
#email_address ⇒ String
Email address of the user.
Instance Method Summary collapse
-
#initialize(**args) ⇒ User
constructor
A new instance of User.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ User
Returns a new instance of User.
2049 2050 2051 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2049 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the user.
Corresponds to the JSON property displayName
2042 2043 2044 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2042 def display_name @display_name end |
#email_address ⇒ String
Email address of the user.
Corresponds to the JSON property emailAddress
2047 2048 2049 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2047 def email_address @email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2054 2055 2056 2057 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2054 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email_address = args[:email_address] if args.key?(:email_address) end |