class Google::Apis::DisplayvideoV1::Partner
A single partner in Display & Video 360 (DV360).
Attributes
Ad server related settings of a partner. Corresponds to the JSON property `adServerConfig` @return [Google::Apis::DisplayvideoV1::PartnerAdServerConfig]
Settings that control how partner related data may be accessed. Corresponds to the JSON property `dataAccessConfig` @return [Google::Apis::DisplayvideoV1::PartnerDataAccessConfig]
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]
Output only. The status of the partner. Corresponds to the JSON property `entityStatus` @return [String]
Settings that control which exchanges are enabled for a partner. Corresponds to the JSON property `exchangeConfig` @return [Google::Apis::DisplayvideoV1::ExchangeConfig]
General settings of a partner. Corresponds to the JSON property `generalConfig` @return [Google::Apis::DisplayvideoV1::PartnerGeneralConfig]
Output only. The resource name of the partner. Corresponds to the JSON property `name` @return [String]
Output only. The unique ID of the partner. Assigned by the system. Corresponds to the JSON property `partnerId` @return [Fixnum]
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
# File lib/google/apis/displayvideo_v1/classes.rb, line 7866 def initialize(**args) update!(**args) end
Public Instance Methods
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