Class: Google::Apis::ContentV2::AccountUser
- Inherits:
-
Object
- Object
- Google::Apis::ContentV2::AccountUser
- Defined in:
- generated/google/apis/content_v2/classes.rb,
generated/google/apis/content_v2/representations.rb,
generated/google/apis/content_v2/representations.rb
Instance Attribute Summary collapse
-
#admin ⇒ Boolean
(also: #admin?)
Whether user is an admin.
-
#email_address ⇒ String
User's email address.
Instance Method Summary collapse
-
#initialize(**args) ⇒ AccountUser
constructor
A new instance of AccountUser.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Google::Apis::Core::JsonObjectSupport
Methods included from Google::Apis::Core::Hashable
Constructor Details
#initialize(**args) ⇒ AccountUser
Returns a new instance of AccountUser
459 460 461 |
# File 'generated/google/apis/content_v2/classes.rb', line 459 def initialize(**args) update!(**args) end |
Instance Attribute Details
#admin ⇒ Boolean Also known as: admin?
Whether user is an admin.
Corresponds to the JSON property admin
451 452 453 |
# File 'generated/google/apis/content_v2/classes.rb', line 451 def admin @admin end |
#email_address ⇒ String
User's email address.
Corresponds to the JSON property emailAddress
457 458 459 |
# File 'generated/google/apis/content_v2/classes.rb', line 457 def email_address @email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
464 465 466 467 |
# File 'generated/google/apis/content_v2/classes.rb', line 464 def update!(**args) @admin = args[:admin] if args.key?(:admin) @email_address = args[:email_address] if args.key?(:email_address) end |