Class: Google::Apis::Adexchangebuyer2V2beta1::ClientUserInvitation

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

An invitation for a new client user to get access to the Ad Exchange Buyer UI. 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) ⇒ ClientUserInvitation

Returns a new instance of ClientUserInvitation



193
194
195
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 193

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

Instance Attribute Details

#client_account_idString

Numerical account ID of the client buyer that the invited user is associated with. The value of this field is ignored in create operations. Corresponds to the JSON property clientAccountId

Returns:

  • (String)


191
192
193
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 191

def 
  @client_account_id
end

#emailString

The email address to which the invitation is sent. Email addresses should be unique among all client users under each sponsor buyer. Corresponds to the JSON property email

Returns:

  • (String)


184
185
186
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 184

def email
  @email
end

#invitation_idString

The unique numerical ID of the invitation that is sent to the user. The value of this field is ignored in create operations. Corresponds to the JSON property invitationId

Returns:

  • (String)


177
178
179
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 177

def invitation_id
  @invitation_id
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



198
199
200
201
202
# File 'generated/google/apis/adexchangebuyer2_v2beta1/classes.rb', line 198

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