Class: Google::Apis::DfareportingV2_6::SiteContact

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

Overview

Site Contact

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) ⇒ SiteContact

Returns a new instance of SiteContact



10416
10417
10418
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10416

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

Instance Attribute Details

#addressString

Address of this site contact. Corresponds to the JSON property address

Returns:

  • (String)


10379
10380
10381
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10379

def address
  @address
end

#contact_typeString

Site contact type. Corresponds to the JSON property contactType

Returns:

  • (String)


10384
10385
10386
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10384

def contact_type
  @contact_type
end

#emailString

Email address of this site contact. This is a required field. Corresponds to the JSON property email

Returns:

  • (String)


10389
10390
10391
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10389

def email
  @email
end

#first_nameString

First name of this site contact. Corresponds to the JSON property firstName

Returns:

  • (String)


10394
10395
10396
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10394

def first_name
  @first_name
end

#idString

ID of this site contact. This is a read-only, auto-generated field. Corresponds to the JSON property id

Returns:

  • (String)


10399
10400
10401
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10399

def id
  @id
end

#last_nameString

Last name of this site contact. Corresponds to the JSON property lastName

Returns:

  • (String)


10404
10405
10406
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10404

def last_name
  @last_name
end

#phoneString

Primary phone number of this site contact. Corresponds to the JSON property phone

Returns:

  • (String)


10409
10410
10411
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10409

def phone
  @phone
end

#titleString

Title or designation of this site contact. Corresponds to the JSON property title

Returns:

  • (String)


10414
10415
10416
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10414

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



10421
10422
10423
10424
10425
10426
10427
10428
10429
10430
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 10421

def update!(**args)
  @address = args[:address] if args.key?(:address)
  @contact_type = args[:contact_type] if args.key?(:contact_type)
  @email = args[:email] if args.key?(:email)
  @first_name = args[:first_name] if args.key?(:first_name)
  @id = args[:id] if args.key?(:id)
  @last_name = args[:last_name] if args.key?(:last_name)
  @phone = args[:phone] if args.key?(:phone)
  @title = args[:title] if args.key?(:title)
end