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
503 504 505 |
# File 'generated/google/apis/content_v2/classes.rb', line 503 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
495 496 497 |
# File 'generated/google/apis/content_v2/classes.rb', line 495 def admin @admin end |
#email_address ⇒ String
User's email address.
Corresponds to the JSON property emailAddress
501 502 503 |
# File 'generated/google/apis/content_v2/classes.rb', line 501 def email_address @email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
508 509 510 511 |
# File 'generated/google/apis/content_v2/classes.rb', line 508 def update!(**args) @admin = args[:admin] if args.key?(:admin) @email_address = args[:email_address] if args.key?(:email_address) end |