Class: Google::Apis::DfareportingV2_3::DirectorySiteContactAssignment

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/dfareporting_v2_3/classes.rb,
generated/google/apis/dfareporting_v2_3/representations.rb,
generated/google/apis/dfareporting_v2_3/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.



4589
4590
4591
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 4589

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)


4580
4581
4582
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 4580

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)


4587
4588
4589
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 4587

def visibility
  @visibility
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4594
4595
4596
4597
# File 'generated/google/apis/dfareporting_v2_3/classes.rb', line 4594

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