Class: Google::Apis::DfareportingV2_6::DirectorySiteContactAssignment

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

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.



4958
4959
4960
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4958

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)


4949
4950
4951
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4949

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)


4956
4957
4958
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4956

def visibility
  @visibility
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4963
4964
4965
4966
# File 'generated/google/apis/dfareporting_v2_6/classes.rb', line 4963

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