class Google::Apis::DisplayvideoV1::Partner

A single partner in Display & Video 360 (DV360).

Attributes

ad_server_config[RW]

Ad server related settings of a partner. Corresponds to the JSON property `adServerConfig` @return [Google::Apis::DisplayvideoV1::PartnerAdServerConfig]

data_access_config[RW]

Settings that control how partner related data may be accessed. Corresponds to the JSON property `dataAccessConfig` @return [Google::Apis::DisplayvideoV1::PartnerDataAccessConfig]

display_name[RW]

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

entity_status[RW]

Output only. The status of the partner. Corresponds to the JSON property `entityStatus` @return [String]

exchange_config[RW]

Settings that control which exchanges are enabled for a partner. Corresponds to the JSON property `exchangeConfig` @return [Google::Apis::DisplayvideoV1::ExchangeConfig]

general_config[RW]

General settings of a partner. Corresponds to the JSON property `generalConfig` @return [Google::Apis::DisplayvideoV1::PartnerGeneralConfig]

name[RW]

Output only. The resource name of the partner. Corresponds to the JSON property `name` @return [String]

partner_id[RW]

Output only. The unique ID of the partner. Assigned by the system. Corresponds to the JSON property `partnerId` @return [Fixnum]

update_time[RW]

Output only. The timestamp when the partner was last updated. Assigned by the system. Corresponds to the JSON property `updateTime` @return [String]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/displayvideo_v1/classes.rb, line 7866
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/displayvideo_v1/classes.rb, line 7871
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