Class: Google::Apis::DisplayvideoV1::InventorySource

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
lib/google/apis/displayvideo_v1/classes.rb,
lib/google/apis/displayvideo_v1/representations.rb,
lib/google/apis/displayvideo_v1/representations.rb

Overview

An inventory source.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ InventorySource

Returns a new instance of InventorySource.



5288
5289
5290
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5288

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

Instance Attribute Details

#commitmentString

Whether the inventory source has a guaranteed or non-guaranteed delivery. Corresponds to the JSON property commitment

Returns:

  • (String)


5212
5213
5214
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5212

def commitment
  @commitment
end

#creative_configsArray<Google::Apis::DisplayvideoV1::CreativeConfig>

The creative requirements of the inventory source. Not applicable for auction packages. Corresponds to the JSON property creativeConfigs



5218
5219
5220
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5218

def creative_configs
  @creative_configs
end

#deal_idString

The ID in the exchange space that uniquely identifies the inventory source. Must be unique across buyers within each exchange but not necessarily unique across exchanges. Corresponds to the JSON property dealId

Returns:

  • (String)


5225
5226
5227
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5225

def deal_id
  @deal_id
end

#delivery_methodString

The delivery method of the inventory source. * For non-guaranteed inventory sources, the only acceptable value is INVENTORY_SOURCE_DELIVERY_METHOD_PROGRAMMATIC. * For guaranteed inventory sources, acceptable values are INVENTORY_SOURCE_DELIVERY_METHOD_TAG and INVENTORY_SOURCE_DELIVERY_METHOD_PROGRAMMATIC. Corresponds to the JSON property deliveryMethod

Returns:

  • (String)


5234
5235
5236
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5234

def delivery_method
  @delivery_method
end

#display_nameString

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

Returns:

  • (String)


5240
5241
5242
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5240

def display_name
  @display_name
end

#exchangeString

The exchange to which the inventory source belongs. Corresponds to the JSON property exchange

Returns:

  • (String)


5245
5246
5247
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5245

def exchange
  @exchange
end

#inventory_source_idFixnum

Output only. The unique ID of the inventory source. Assigned by the system. Corresponds to the JSON property inventorySourceId

Returns:

  • (Fixnum)


5250
5251
5252
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5250

def inventory_source_id
  @inventory_source_id
end

#inventory_source_typeString

Denotes the type of the inventory source. Corresponds to the JSON property inventorySourceType

Returns:

  • (String)


5255
5256
5257
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5255

def inventory_source_type
  @inventory_source_type
end

#nameString

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

Returns:

  • (String)


5260
5261
5262
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5260

def name
  @name
end

#publisher_nameString

The publisher/seller name of the inventory source. Corresponds to the JSON property publisherName

Returns:

  • (String)


5265
5266
5267
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5265

def publisher_name
  @publisher_name
end

#rate_detailsGoogle::Apis::DisplayvideoV1::RateDetails

The rate related settings of the inventory source. Corresponds to the JSON property rateDetails



5270
5271
5272
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5270

def rate_details
  @rate_details
end

#statusGoogle::Apis::DisplayvideoV1::InventorySourceStatus

The status related settings of the inventory source. Corresponds to the JSON property status



5275
5276
5277
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5275

def status
  @status
end

#time_rangeGoogle::Apis::DisplayvideoV1::TimeRange

A time range. Corresponds to the JSON property timeRange



5280
5281
5282
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5280

def time_range
  @time_range
end

#update_timeString

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

Returns:

  • (String)


5286
5287
5288
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5286

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



5293
5294
5295
5296
5297
5298
5299
5300
5301
5302
5303
5304
5305
5306
5307
5308
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 5293

def update!(**args)
  @commitment = args[:commitment] if args.key?(:commitment)
  @creative_configs = args[:creative_configs] if args.key?(:creative_configs)
  @deal_id = args[:deal_id] if args.key?(:deal_id)
  @delivery_method = args[:delivery_method] if args.key?(:delivery_method)
  @display_name = args[:display_name] if args.key?(:display_name)
  @exchange = args[:exchange] if args.key?(:exchange)
  @inventory_source_id = args[:inventory_source_id] if args.key?(:inventory_source_id)
  @inventory_source_type = args[:inventory_source_type] if args.key?(:inventory_source_type)
  @name = args[:name] if args.key?(:name)
  @publisher_name = args[:publisher_name] if args.key?(:publisher_name)
  @rate_details = args[:rate_details] if args.key?(:rate_details)
  @status = args[:status] if args.key?(:status)
  @time_range = args[:time_range] if args.key?(:time_range)
  @update_time = args[:update_time] if args.key?(:update_time)
end