Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAdGroupAd

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

Overview

An ad group ad.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ GoogleAdsSearchads360V0ResourcesAdGroupAd

Returns a new instance of GoogleAdsSearchads360V0ResourcesAdGroupAd.



4294
4295
4296
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4294

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

Instance Attribute Details

#adGoogle::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesAd

An ad. Corresponds to the JSON property ad



4249
4250
4251
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4249

def ad
  @ad
end

#creation_timeString

Output only. The timestamp when this ad_group_ad was created. The datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss.ssssss" format. Corresponds to the JSON property creationTime

Returns:

  • (String)


4255
4256
4257
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4255

def creation_time
  @creation_time
end

#engine_idString

Output only. ID of the ad in the external engine account. This field is for Search Ads 360 account only, for example, Yahoo Japan, Microsoft, Baidu etc. For non-Search Ads 360 entity, use "ad_group_ad.ad.id" instead. Corresponds to the JSON property engineId

Returns:

  • (String)


4262
4263
4264
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4262

def engine_id
  @engine_id
end

#engine_statusString

Output only. Additional status of the ad in the external engine account. Possible statuses (depending on the type of external account) include active, eligible, pending review, etc. Corresponds to the JSON property engineStatus

Returns:

  • (String)


4269
4270
4271
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4269

def engine_status
  @engine_status
end

#labelsArray<String>

Output only. The resource names of labels attached to this ad group ad. Corresponds to the JSON property labels

Returns:

  • (Array<String>)


4274
4275
4276
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4274

def labels
  @labels
end

#last_modified_timeString

Output only. The datetime when this ad group ad was last modified. The datetime is in the customer's time zone and in "yyyy-MM-dd HH:mm:ss.ssssss" format. Corresponds to the JSON property lastModifiedTime

Returns:

  • (String)


4281
4282
4283
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4281

def last_modified_time
  @last_modified_time
end

#resource_nameString

Immutable. The resource name of the ad. Ad group ad resource names have the form: customers/customer_id/adGroupAds/ad_group_id~ad_id` Corresponds to the JSON propertyresourceName`

Returns:

  • (String)


4287
4288
4289
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4287

def resource_name
  @resource_name
end

#statusString

The status of the ad. Corresponds to the JSON property status

Returns:

  • (String)


4292
4293
4294
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4292

def status
  @status
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



4299
4300
4301
4302
4303
4304
4305
4306
4307
4308
# File 'lib/google/apis/searchads360_v0/classes.rb', line 4299

def update!(**args)
  @ad = args[:ad] if args.key?(:ad)
  @creation_time = args[:creation_time] if args.key?(:creation_time)
  @engine_id = args[:engine_id] if args.key?(:engine_id)
  @engine_status = args[:engine_status] if args.key?(:engine_status)
  @labels = args[:labels] if args.key?(:labels)
  @last_modified_time = args[:last_modified_time] if args.key?(:last_modified_time)
  @resource_name = args[:resource_name] if args.key?(:resource_name)
  @status = args[:status] if args.key?(:status)
end