class Google::Apis::Adexchangebuyer2V2beta1::ClientUserInvitation

An invitation for a new client user to get access to the Authorized Buyers UI. All fields are required unless otherwise specified.

Attributes

client_account_id[RW]

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` @return [Fixnum]

email[RW]

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` @return [String]

invitation_id[RW]

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` @return [Fixnum]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 571
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/adexchangebuyer2_v2beta1/classes.rb, line 576
def update!(**args)
  @client_account_id = args[:client_account_id] if args.key?(:client_account_id)
  @email = args[:email] if args.key?(:email)
  @invitation_id = args[:invitation_id] if args.key?(:invitation_id)
end