Class: Google::Apis::DfareportingV2_7::SiteContact
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_7::SiteContact
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/dfareporting_v2_7/classes.rb,
generated/google/apis/dfareporting_v2_7/representations.rb,
generated/google/apis/dfareporting_v2_7/representations.rb
Overview
Site Contact
Instance Attribute Summary collapse
-
#address ⇒ String
Address of this site contact.
-
#contact_type ⇒ String
Site contact type.
-
#email ⇒ String
Email address of this site contact.
-
#first_name ⇒ String
First name of this site contact.
-
#id ⇒ Fixnum
ID of this site contact.
-
#last_name ⇒ String
Last name of this site contact.
-
#phone ⇒ String
Primary phone number of this site contact.
-
#title ⇒ String
Title or designation of this site contact.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SiteContact
constructor
A new instance of SiteContact.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SiteContact
Returns a new instance of SiteContact
10489 10490 10491 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10489 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ String
Address of this site contact.
Corresponds to the JSON property address
10452 10453 10454 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10452 def address @address end |
#contact_type ⇒ String
Site contact type.
Corresponds to the JSON property contactType
10457 10458 10459 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10457 def contact_type @contact_type end |
#email ⇒ String
Email address of this site contact. This is a required field.
Corresponds to the JSON property email
10462 10463 10464 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10462 def email @email end |
#first_name ⇒ String
First name of this site contact.
Corresponds to the JSON property firstName
10467 10468 10469 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10467 def first_name @first_name end |
#id ⇒ Fixnum
ID of this site contact. This is a read-only, auto-generated field.
Corresponds to the JSON property id
10472 10473 10474 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10472 def id @id end |
#last_name ⇒ String
Last name of this site contact.
Corresponds to the JSON property lastName
10477 10478 10479 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10477 def last_name @last_name end |
#phone ⇒ String
Primary phone number of this site contact.
Corresponds to the JSON property phone
10482 10483 10484 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10482 def phone @phone end |
#title ⇒ String
Title or designation of this site contact.
Corresponds to the JSON property title
10487 10488 10489 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10487 def title @title end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 |
# File 'generated/google/apis/dfareporting_v2_7/classes.rb', line 10494 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 |