Class: Google::Apis::Adexchangebuyer2V2beta1::ClientUser

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/adexchangebuyer2_v2beta1/classes.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb,
generated/google/apis/adexchangebuyer2_v2beta1/representations.rb

Overview

A client user is created under a client buyer and has restricted access to the Ad Exchange Marketplace and certain other sections of the Ad Exchange Buyer UI based on the role granted to the associated client buyer. The only way a new client user can be created is via accepting an email invitation (see the accounts.clients.invitations.create method). All fields are required unless otherwise specified.

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ ClientUser

Returns a new instance of ClientUser



401
402
403
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 401

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

Instance Attribute Details

#client_account_idFixnum

Numerical account ID of the client buyer with which the user is associated; the buyer must be a client of the current sponsor buyer. The value of this field is ignored in an update operation. Corresponds to the JSON property clientAccountId

Returns:

  • (Fixnum)


381
382
383
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 381

def 
  @client_account_id
end

#emailString

User's email address. The value of this field is ignored in an update operation. Corresponds to the JSON property email

Returns:

  • (String)


387
388
389
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 387

def email
  @email
end

#statusString

The status of the client user. Corresponds to the JSON property status

Returns:

  • (String)


392
393
394
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 392

def status
  @status
end

#user_idFixnum

The unique numerical ID of the client user that has accepted an invitation. The value of this field is ignored in an update operation. Corresponds to the JSON property userId

Returns:

  • (Fixnum)


399
400
401
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 399

def user_id
  @user_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



406
407
408
409
410
411
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 406

def update!(**args)
  @client_account_id = args[:client_account_id] if args.key?(:client_account_id)
  @email = args[:email] if args.key?(:email)
  @status = args[:status] if args.key?(:status)
  @user_id = args[:user_id] if args.key?(:user_id)
end