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.
2339 2340 2341 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2339 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the user.
Corresponds to the JSON property displayName
2332 2333 2334 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2332 def display_name @display_name end |
#email_address ⇒ String
Email address of the user.
Corresponds to the JSON property emailAddress
2337 2338 2339 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2337 def email_address @email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
2344 2345 2346 2347 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 2344 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email_address = args[:email_address] if args.key?(:email_address) end |