Class: Google::Apis::DisplayvideoV1::Campaign

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

A single campaign.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ Campaign

Returns a new instance of Campaign.



2243
2244
2245
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2243

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

Instance Attribute Details

#advertiser_idFixnum

Output only. The unique ID of the advertiser the campaign belongs to. Corresponds to the JSON property advertiserId

Returns:

  • (Fixnum)


2189
2190
2191
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2189

def advertiser_id
  @advertiser_id
end

#campaign_budgetsArray<Google::Apis::DisplayvideoV1::CampaignBudget>

The list of budgets available to this campaign. If this field is not set, the campaign uses an unlimited budget. Corresponds to the JSON property campaignBudgets



2195
2196
2197
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2195

def campaign_budgets
  @campaign_budgets
end

#campaign_flightGoogle::Apis::DisplayvideoV1::CampaignFlight

Settings that track the planned spend and duration of a campaign. Corresponds to the JSON property campaignFlight



2200
2201
2202
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2200

def campaign_flight
  @campaign_flight
end

#campaign_goalGoogle::Apis::DisplayvideoV1::CampaignGoal

Settings that control the goal of a campaign. Corresponds to the JSON property campaignGoal



2205
2206
2207
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2205

def campaign_goal
  @campaign_goal
end

#campaign_idFixnum

Output only. The unique ID of the campaign. Assigned by the system. Corresponds to the JSON property campaignId

Returns:

  • (Fixnum)


2210
2211
2212
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2210

def campaign_id
  @campaign_id
end

#display_nameString

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

Returns:

  • (String)


2216
2217
2218
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2216

def display_name
  @display_name
end

#entity_statusString

Required. Controls whether or not the insertion orders under this campaign can spend their budgets and bid on inventory. * Accepted values are ENTITY_STATUS_ACTIVE, ENTITY_STATUS_ARCHIVED, and ENTITY_STATUS_PAUSED. * For CreateCampaign method, ENTITY_STATUS_ARCHIVED is not allowed. Corresponds to the JSON property entityStatus

Returns:

  • (String)


2224
2225
2226
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2224

def entity_status
  @entity_status
end

#frequency_capGoogle::Apis::DisplayvideoV1::FrequencyCap

Settings that control the number of times a user may be shown with the same ad during a given time period. Corresponds to the JSON property frequencyCap



2230
2231
2232
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2230

def frequency_cap
  @frequency_cap
end

#nameString

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

Returns:

  • (String)


2235
2236
2237
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2235

def name
  @name
end

#update_timeString

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

Returns:

  • (String)


2241
2242
2243
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2241

def update_time
  @update_time
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
# File 'lib/google/apis/displayvideo_v1/classes.rb', line 2248

def update!(**args)
  @advertiser_id = args[:advertiser_id] if args.key?(:advertiser_id)
  @campaign_budgets = args[:campaign_budgets] if args.key?(:campaign_budgets)
  @campaign_flight = args[:campaign_flight] if args.key?(:campaign_flight)
  @campaign_goal = args[:campaign_goal] if args.key?(:campaign_goal)
  @campaign_id = args[:campaign_id] if args.key?(:campaign_id)
  @display_name = args[:display_name] if args.key?(:display_name)
  @entity_status = args[:entity_status] if args.key?(:entity_status)
  @frequency_cap = args[:frequency_cap] if args.key?(:frequency_cap)
  @name = args[:name] if args.key?(:name)
  @update_time = args[:update_time] if args.key?(:update_time)
end