Class: Google::Apis::ContentV2_1::AccountUser

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
generated/google/apis/content_v2_1/classes.rb,
generated/google/apis/content_v2_1/representations.rb,
generated/google/apis/content_v2_1/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



649
650
651
# File 'generated/google/apis/content_v2_1/classes.rb', line 649

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)


641
642
643
# File 'generated/google/apis/content_v2_1/classes.rb', line 641

def admin
  @admin
end

#email_addressString

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

Returns:

  • (String)


647
648
649
# File 'generated/google/apis/content_v2_1/classes.rb', line 647

def email_address
  @email_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



654
655
656
657
# File 'generated/google/apis/content_v2_1/classes.rb', line 654

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