Class: Google::Apis::ContentV2::AccountUser

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
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

Instance Method Summary collapse

Methods included from Google::Apis::Core::JsonObjectSupport

#to_json

Methods included from Google::Apis::Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ AccountUser

Returns a new instance of AccountUser



784
785
786
# File 'generated/google/apis/content_v2/classes.rb', line 784

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#adminBoolean Also known as: admin?

Whether user is an admin. Corresponds to the JSON property admin

Returns:

  • (Boolean)


776
777
778
# File 'generated/google/apis/content_v2/classes.rb', line 776

def admin
  @admin
end

#email_addressString

User's email address. Corresponds to the JSON property emailAddress

Returns:

  • (String)


782
783
784
# File 'generated/google/apis/content_v2/classes.rb', line 782

def email_address
  @email_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



789
790
791
792
# File 'generated/google/apis/content_v2/classes.rb', line 789

def update!(**args)
  @admin = args[:admin] if args.key?(:admin)
  @email_address = args[:email_address] if args.key?(:email_address)
end