Class: Google::Apis::DisplayvideoV2::Partner

Inherits:
Object
  • Object
show all
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

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Partner

Returns a new instance of Partner.



9567
9568
9569
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9567

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#ad_server_configGoogle::Apis::DisplayvideoV2::PartnerAdServerConfig

Ad server related settings of a partner. Corresponds to the JSON property adServerConfig



9523
9524
9525
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9523

def ad_server_config
  @ad_server_config
end

#data_access_configGoogle::Apis::DisplayvideoV2::PartnerDataAccessConfig

Settings that control how partner related data may be accessed. Corresponds to the JSON property dataAccessConfig



9528
9529
9530
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9528

def data_access_config
  @data_access_config
end

#display_nameString

The display name of the partner. Must be UTF-8 encoded with a maximum size of 240 bytes. Corresponds to the JSON property displayName

Returns:

  • (String)


9534
9535
9536
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9534

def display_name
  @display_name
end

#entity_statusString

Output only. The status of the partner. Corresponds to the JSON property entityStatus

Returns:

  • (String)


9539
9540
9541
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9539

def entity_status
  @entity_status
end

#exchange_configGoogle::Apis::DisplayvideoV2::ExchangeConfig

Settings that control which exchanges are enabled for a partner. Corresponds to the JSON property exchangeConfig



9544
9545
9546
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9544

def exchange_config
  @exchange_config
end

#general_configGoogle::Apis::DisplayvideoV2::PartnerGeneralConfig

General settings of a partner. Corresponds to the JSON property generalConfig



9549
9550
9551
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9549

def general_config
  @general_config
end

#nameString

Output only. The resource name of the partner. Corresponds to the JSON property name

Returns:

  • (String)


9554
9555
9556
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9554

def name
  @name
end

#partner_idFixnum

Output only. The unique ID of the partner. Assigned by the system. Corresponds to the JSON property partnerId

Returns:

  • (Fixnum)


9559
9560
9561
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9559

def partner_id
  @partner_id
end

#update_timeString

Output only. The timestamp when the partner was last updated. Assigned by the system. Corresponds to the JSON property updateTime

Returns:

  • (String)


9565
9566
9567
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9565

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



9572
9573
9574
9575
9576
9577
9578
9579
9580
9581
9582
# File 'lib/google/apis/displayvideo_v2/classes.rb', line 9572

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