Class: Google::Apis::DfareportingV2_5::DirectorySiteContactAssignment

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

Overview

Directory Site Contact Assignment

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

Returns a new instance of DirectorySiteContactAssignment.



4856
4857
4858
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 4856

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

Instance Attribute Details

#contact_idString

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

Returns:

  • (String)


4847
4848
4849
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 4847

def contact_id
  @contact_id
end

#visibilityString

Visibility of this directory site contact assignment. When set to PUBLIC this contact assignment is visible to all account and agency users; when set to PRIVATE it is visible only to the site. Corresponds to the JSON property visibility

Returns:

  • (String)


4854
4855
4856
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 4854

def visibility
  @visibility
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4861
4862
4863
4864
# File 'generated/google/apis/dfareporting_v2_5/classes.rb', line 4861

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