Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesFinalUrlExpansionAssetView
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesFinalUrlExpansionAssetView
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- lib/google/apis/searchads360_v23/classes.rb,
lib/google/apis/searchads360_v23/representations.rb,
lib/google/apis/searchads360_v23/representations.rb
Overview
FinalUrlExpansionAssetView Resource.
Instance Attribute Summary collapse
-
#ad_group ⇒ String
Output only.
-
#asset ⇒ String
Output only.
-
#asset_group ⇒ String
Output only.
-
#campaign ⇒ String
Output only.
-
#field_type ⇒ String
Output only.
-
#final_url ⇒ String
Output only.
-
#resource_name ⇒ String
Output only.
-
#status ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesFinalUrlExpansionAssetView
constructor
A new instance of GoogleAdsSearchads360V23ResourcesFinalUrlExpansionAssetView.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesFinalUrlExpansionAssetView
Returns a new instance of GoogleAdsSearchads360V23ResourcesFinalUrlExpansionAssetView.
29214 29215 29216 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29214 def initialize(**args) update!(**args) end |
Instance Attribute Details
#ad_group ⇒ String
Output only. Ad Group in which FinalUrlExpansionAsset served.
Corresponds to the JSON property adGroup
29177 29178 29179 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29177 def ad_group @ad_group end |
#asset ⇒ String
Output only. The ID of the asset.
Corresponds to the JSON property asset
29182 29183 29184 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29182 def asset @asset end |
#asset_group ⇒ String
Output only. Asset Group in which FinalUrlExpansionAsset served.
Corresponds to the JSON property assetGroup
29187 29188 29189 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29187 def asset_group @asset_group end |
#campaign ⇒ String
Output only. Campaign in which the asset served.
Corresponds to the JSON property campaign
29192 29193 29194 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29192 def campaign @campaign end |
#field_type ⇒ String
Output only. The field type of the asset.
Corresponds to the JSON property fieldType
29197 29198 29199 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29197 def field_type @field_type end |
#final_url ⇒ String
Output only. Final URL of the FinalUrlExpansionAsset.
Corresponds to the JSON property finalUrl
29202 29203 29204 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29202 def final_url @final_url end |
#resource_name ⇒ String
Output only. The resource name of the FinalUrlExpansionAsset.
Corresponds to the JSON property resourceName
29207 29208 29209 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29207 def resource_name @resource_name end |
#status ⇒ String
Output only. Status of the FinalUrlExpansionAsset.
Corresponds to the JSON property status
29212 29213 29214 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29212 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 29219 def update!(**args) @ad_group = args[:ad_group] if args.key?(:ad_group) @asset = args[:asset] if args.key?(:asset) @asset_group = args[:asset_group] if args.key?(:asset_group) @campaign = args[:campaign] if args.key?(:campaign) @field_type = args[:field_type] if args.key?(:field_type) @final_url = args[:final_url] if args.key?(:final_url) @resource_name = args[:resource_name] if args.key?(:resource_name) @status = args[:status] if args.key?(:status) end |