Class: Google::Apis::DisplayvideoV2::ExchangeConfigEnabledExchange
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV2::ExchangeConfigEnabledExchange
- 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
An enabled exchange in the partner.
Instance Attribute Summary collapse
-
#exchange ⇒ String
The enabled exchange.
-
#google_ad_manager_agency_id ⇒ String
Output only.
-
#google_ad_manager_buyer_network_id ⇒ String
Output only.
-
#seat_id ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ExchangeConfigEnabledExchange
constructor
A new instance of ExchangeConfigEnabledExchange.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ExchangeConfigEnabledExchange
Returns a new instance of ExchangeConfigEnabledExchange.
5112 5113 5114 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 5112 def initialize(**args) update!(**args) end |
Instance Attribute Details
#exchange ⇒ String
The enabled exchange.
Corresponds to the JSON property exchange
5093 5094 5095 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 5093 def exchange @exchange end |
#google_ad_manager_agency_id ⇒ String
Output only. Agency ID of Google Ad Manager. The field is only relevant when
Google Ad Manager is the enabled exchange.
Corresponds to the JSON property googleAdManagerAgencyId
5099 5100 5101 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 5099 def google_ad_manager_agency_id @google_ad_manager_agency_id end |
#google_ad_manager_buyer_network_id ⇒ String
Output only. Network ID of Google Ad Manager. The field is only relevant when
Google Ad Manager is the enabled exchange.
Corresponds to the JSON property googleAdManagerBuyerNetworkId
5105 5106 5107 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 5105 def google_ad_manager_buyer_network_id @google_ad_manager_buyer_network_id end |
#seat_id ⇒ String
Output only. Seat ID of the enabled exchange.
Corresponds to the JSON property seatId
5110 5111 5112 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 5110 def seat_id @seat_id end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
5117 5118 5119 5120 5121 5122 |
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 5117 def update!(**args) @exchange = args[:exchange] if args.key?(:exchange) @google_ad_manager_agency_id = args[:google_ad_manager_agency_id] if args.key?(:google_ad_manager_agency_id) @google_ad_manager_buyer_network_id = args[:google_ad_manager_buyer_network_id] if args.key?(:google_ad_manager_buyer_network_id) @seat_id = args[:seat_id] if args.key?(:seat_id) end |