Class: Google::Apis::DisplayvideoV1::Partner

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/displayvideo_v1/classes.rb,
generated/google/apis/displayvideo_v1/representations.rb,
generated/google/apis/displayvideo_v1/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.



6955
6956
6957
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6955

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

Instance Attribute Details

#ad_server_configGoogle::Apis::DisplayvideoV1::PartnerAdServerConfig

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



6911
6912
6913
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6911

def ad_server_config
  @ad_server_config
end

#data_access_configGoogle::Apis::DisplayvideoV1::PartnerDataAccessConfig

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



6916
6917
6918
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6916

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)


6922
6923
6924
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6922

def display_name
  @display_name
end

#entity_statusString

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

Returns:

  • (String)


6927
6928
6929
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6927

def entity_status
  @entity_status
end

#exchange_configGoogle::Apis::DisplayvideoV1::ExchangeConfig

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



6932
6933
6934
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6932

def exchange_config
  @exchange_config
end

#general_configGoogle::Apis::DisplayvideoV1::PartnerGeneralConfig

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



6937
6938
6939
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6937

def general_config
  @general_config
end

#nameString

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

Returns:

  • (String)


6942
6943
6944
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6942

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)


6947
6948
6949
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6947

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)


6953
6954
6955
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6953

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6960
6961
6962
6963
6964
6965
6966
6967
6968
6969
6970
# File 'generated/google/apis/displayvideo_v1/classes.rb', line 6960

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