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.
1974 1975 1976 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1974 def initialize(**args) update!(**args) end |
Instance Attribute Details
#display_name ⇒ String
Display name of the user.
Corresponds to the JSON property displayName
1967 1968 1969 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1967 def display_name @display_name end |
#email_address ⇒ String
Email address of the user.
Corresponds to the JSON property emailAddress
1972 1973 1974 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1972 def email_address @email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1979 1980 1981 1982 |
# File 'lib/google/apis/alertcenter_v1beta1/classes.rb', line 1979 def update!(**args) @display_name = args[:display_name] if args.key?(:display_name) @email_address = args[:email_address] if args.key?(:email_address) end |