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.
854 855 856 |
# File 'generated/google/apis/content_v2/classes.rb', line 854 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
846 847 848 |
# File 'generated/google/apis/content_v2/classes.rb', line 846 def admin @admin end |
#email_address ⇒ String
User's email address.
Corresponds to the JSON property emailAddress
852 853 854 |
# File 'generated/google/apis/content_v2/classes.rb', line 852 def email_address @email_address end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
859 860 861 862 |
# File 'generated/google/apis/content_v2/classes.rb', line 859 def update!(**args) @admin = args[:admin] if args.key?(:admin) @email_address = args[:email_address] if args.key?(:email_address) end |