Class: Google::Apis::DisplayvideoV2::Partner
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::Partner
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v2/classes.rb,
lib/google/apis/displayvideo_v2/representations.rb,
lib/google/apis/displayvideo_v2/representations.rb
Overview
A single partner in Display & Video 360 (DV360).
Instance Attribute Summary collapse
-
#ad_server_config ⇒ Google::Apis::DisplayvideoV2::PartnerAdServerConfig
Ad server related settings of a partner.
-
#data_access_config ⇒ Google::Apis::DisplayvideoV2::PartnerDataAccessConfig
Settings that control how partner related data may be accessed.
-
#display_name ⇒ String
The display name of the partner.
-
#entity_status ⇒ String
Output only.
-
#exchange_config ⇒ Google::Apis::DisplayvideoV2::ExchangeConfig
Settings that control which exchanges are enabled for a partner.
-
#general_config ⇒ Google::Apis::DisplayvideoV2::PartnerGeneralConfig
General settings of a partner.
-
#name ⇒ String
Output only.
-
#partner_id ⇒ Fixnum
Output only.
-
#update_time ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ Partner
constructor
A new instance of Partner.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ Partner
Returns a new instance of Partner.
9716 9717 9718 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9716 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ad_server_config ⇒ Google::Apis::DisplayvideoV2::PartnerAdServerConfig
Ad server related settings of a partner.
Corresponds to the JSON property adServerConfig
9672 9673 9674 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9672 def ad_server_config @ad_server_config end |
#data_access_config ⇒ Google::Apis::DisplayvideoV2::PartnerDataAccessConfig
Settings that control how partner related data may be accessed.
Corresponds to the JSON property dataAccessConfig
9677 9678 9679 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9677 def data_access_config @data_access_config end |
#display_name ⇒ String
The display name of the partner. Must be UTF-8 encoded with a maximum size of
240 bytes.
Corresponds to the JSON property displayName
9683 9684 9685 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9683 def display_name @display_name end |
#entity_status ⇒ String
Output only. The status of the partner.
Corresponds to the JSON property entityStatus
9688 9689 9690 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9688 def entity_status @entity_status end |
#exchange_config ⇒ Google::Apis::DisplayvideoV2::ExchangeConfig
Settings that control which exchanges are enabled for a partner.
Corresponds to the JSON property exchangeConfig
9693 9694 9695 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9693 def exchange_config @exchange_config end |
#general_config ⇒ Google::Apis::DisplayvideoV2::PartnerGeneralConfig
General settings of a partner.
Corresponds to the JSON property generalConfig
9698 9699 9700 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9698 def general_config @general_config end |
#name ⇒ String
Output only. The resource name of the partner.
Corresponds to the JSON property name
9703 9704 9705 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9703 def name @name end |
#partner_id ⇒ Fixnum
Output only. The unique ID of the partner. Assigned by the system.
Corresponds to the JSON property partnerId
9708 9709 9710 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9708 def partner_id @partner_id end |
#update_time ⇒ String
Output only. The timestamp when the partner was last updated. Assigned by the
system.
Corresponds to the JSON property updateTime
9714 9715 9716 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9714 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9721 def update!(**args) @ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config) @data_access_config = args[:data_access_config] if args.key?(:data_access_config) @display_name = args[:display_name] if args.key?(:display_name) @entity_status = args[:entity_status] if args.key?(:entity_status) @exchange_config = args[:exchange_config] if args.key?(:exchange_config) @general_config = args[:general_config] if args.key?(:general_config) @name = args[:name] if args.key?(:name) @partner_id = args[:partner_id] if args.key?(:partner_id) @update_time = args[:update_time] if args.key?(:update_time) end |