Class: Google::Apis::DfareportingV2_6::DirectorySiteContact
- Inherits:
-
Object
- Object
- Google::Apis::DfareportingV2_6::DirectorySiteContact
- 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
Contains properties of a Site Directory contact.
Instance Attribute Summary collapse
-
#address ⇒ String
Address of this directory site contact.
-
#email ⇒ String
Email address of this directory site contact.
-
#first_name ⇒ String
First name of this directory site contact.
-
#id ⇒ Fixnum
ID of this directory site contact.
-
#kind ⇒ String
Identifies what kind of resource this is.
-
#last_name ⇒ String
Last name of this directory site contact.
-
#phone ⇒ String
Phone number of this directory site contact.
-
#role ⇒ String
Directory site contact role.
-
#title ⇒ String
Title or designation of this directory site contact.
-
#type ⇒ String
Directory site contact type.
Instance Method Summary collapse
-
#initialize(**args) ⇒ DirectorySiteContact
constructor
A new instance of DirectorySiteContact.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ DirectorySiteContact
Returns a new instance of DirectorySiteContact
4929 4930 4931 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4929 def initialize(**args) update!(**args) end |
Instance Attribute Details
#address ⇒ String
Address of this directory site contact.
Corresponds to the JSON property address
4881 4882 4883 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4881 def address @address end |
#email ⇒ String
Email address of this directory site contact.
Corresponds to the JSON property email
4886 4887 4888 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4886 def email @email end |
#first_name ⇒ String
First name of this directory site contact.
Corresponds to the JSON property firstName
4891 4892 4893 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4891 def first_name @first_name end |
#id ⇒ Fixnum
ID of this directory site contact. This is a read-only, auto-generated field.
Corresponds to the JSON property id
4896 4897 4898 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4896 def id @id end |
#kind ⇒ String
Identifies what kind of resource this is. Value: the fixed string "
dfareporting#directorySiteContact".
Corresponds to the JSON property kind
4902 4903 4904 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4902 def kind @kind end |
#last_name ⇒ String
Last name of this directory site contact.
Corresponds to the JSON property lastName
4907 4908 4909 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4907 def last_name @last_name end |
#phone ⇒ String
Phone number of this directory site contact.
Corresponds to the JSON property phone
4912 4913 4914 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4912 def phone @phone end |
#role ⇒ String
Directory site contact role.
Corresponds to the JSON property role
4917 4918 4919 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4917 def role @role end |
#title ⇒ String
Title or designation of this directory site contact.
Corresponds to the JSON property title
4922 4923 4924 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4922 def title @title end |
#type ⇒ String
Directory site contact type.
Corresponds to the JSON property type
4927 4928 4929 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4927 def type @type end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 |
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4934 def update!(**args) @address = args[:address] if args.key?(:address) @email = args[:email] if args.key?(:email) @first_name = args[:first_name] if args.key?(:first_name) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @last_name = args[:last_name] if args.key?(:last_name) @phone = args[:phone] if args.key?(:phone) @role = args[:role] if args.key?(:role) @title = args[:title] if args.key?(:title) @type = args[:type] if args.key?(:type) end |