Class: Google::Apis::DisplayvideoV3::Partner
- Inherits:
-
Object
- Object
- Google::Apis::DisplayvideoV3::Partner
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/displayvideo_v3/classes.rb,
lib/google/apis/displayvideo_v3/representations.rb,
lib/google/apis/displayvideo_v3/representations.rb
Overview
A single partner in Display & Video 360 (DV360).
Instance Attribute Summary collapse
-
#ad_server_config ⇒ Google::Apis::DisplayvideoV3::PartnerAdServerConfig
Ad server related settings of a partner.
-
#billing_config ⇒ Google::Apis::DisplayvideoV3::PartnerBillingConfig
Billing related settings of a partner.
-
#data_access_config ⇒ Google::Apis::DisplayvideoV3::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::DisplayvideoV3::ExchangeConfig
Settings that control which exchanges are enabled for a partner.
-
#general_config ⇒ Google::Apis::DisplayvideoV3::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.
10308 10309 10310 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10308 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ad_server_config ⇒ Google::Apis::DisplayvideoV3::PartnerAdServerConfig
Ad server related settings of a partner.
Corresponds to the JSON property adServerConfig
10259 10260 10261 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10259 def ad_server_config @ad_server_config end |
#billing_config ⇒ Google::Apis::DisplayvideoV3::PartnerBillingConfig
Billing related settings of a partner.
Corresponds to the JSON property billingConfig
10264 10265 10266 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10264 def billing_config @billing_config end |
#data_access_config ⇒ Google::Apis::DisplayvideoV3::PartnerDataAccessConfig
Settings that control how partner related data may be accessed.
Corresponds to the JSON property dataAccessConfig
10269 10270 10271 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10269 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
10275 10276 10277 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10275 def display_name @display_name end |
#entity_status ⇒ String
Output only. The status of the partner.
Corresponds to the JSON property entityStatus
10280 10281 10282 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10280 def entity_status @entity_status end |
#exchange_config ⇒ Google::Apis::DisplayvideoV3::ExchangeConfig
Settings that control which exchanges are enabled for a partner.
Corresponds to the JSON property exchangeConfig
10285 10286 10287 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10285 def exchange_config @exchange_config end |
#general_config ⇒ Google::Apis::DisplayvideoV3::PartnerGeneralConfig
General settings of a partner.
Corresponds to the JSON property generalConfig
10290 10291 10292 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10290 def general_config @general_config end |
#name ⇒ String
Output only. The resource name of the partner.
Corresponds to the JSON property name
10295 10296 10297 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10295 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
10300 10301 10302 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10300 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
10306 10307 10308 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10306 def update_time @update_time end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 |
# File 'lib/google/apis/displayvideo_v3/classes.rb', line 10313 def update!(**args) @ad_server_config = args[:ad_server_config] if args.key?(:ad_server_config) @billing_config = args[:billing_config] if args.key?(:billing_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 |