Class: Google::Apis::AdexchangebuyerV1_4::ContactInformation

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContactInformation

Returns a new instance of ContactInformation.



423
424
425
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 423

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

Instance Attribute Details

#emailString

Email address of the contact. Corresponds to the JSON property email

Returns:

  • (String)


416
417
418
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 416

def email
  @email
end

#nameString

The name of the contact. Corresponds to the JSON property name

Returns:

  • (String)


421
422
423
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 421

def name
  @name
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



428
429
430
431
# File 'generated/google/apis/adexchangebuyer_v1_4/classes.rb', line 428

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