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



867
868
869
# File 'generated/google/apis/content_v2/classes.rb', line 867

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)


859
860
861
# File 'generated/google/apis/content_v2/classes.rb', line 859

def admin
  @admin
end

#email_addressString

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

Returns:

  • (String)


865
866
867
# File 'generated/google/apis/content_v2/classes.rb', line 865

def email_address
  @email_address
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



872
873
874
875
# File 'generated/google/apis/content_v2/classes.rb', line 872

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