Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesCampaignLabel
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ResourcesCampaignLabel
- 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
Represents a relationship between a campaign and a label.
Instance Attribute Summary collapse
-
#campaign ⇒ String
Immutable.
-
#label ⇒ String
Immutable.
-
#owner_customer_id ⇒ Fixnum
Output only.
-
#resource_name ⇒ String
Immutable.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V0ResourcesCampaignLabel
constructor
A new instance of GoogleAdsSearchads360V0ResourcesCampaignLabel.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V0ResourcesCampaignLabel
Returns a new instance of GoogleAdsSearchads360V0ResourcesCampaignLabel.
6163 6164 6165 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 6163 def initialize(**args) update!(**args) end |
Instance Attribute Details
#campaign ⇒ String
Immutable. The campaign to which the label is attached.
Corresponds to the JSON property campaign
6145 6146 6147 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 6145 def campaign @campaign end |
#label ⇒ String
Immutable. The label assigned to the campaign.
Corresponds to the JSON property label
6150 6151 6152 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 6150 def label @label end |
#owner_customer_id ⇒ Fixnum
Output only. The ID of the Customer which owns the label.
Corresponds to the JSON property ownerCustomerId
6155 6156 6157 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 6155 def owner_customer_id @owner_customer_id end |
#resource_name ⇒ String
Immutable. Name of the resource. Campaign label resource names have the form:
customers/
customer_id/campaignLabels/
campaign_id~
label_id`
Corresponds to the JSON property
resourceName`
6161 6162 6163 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 6161 def resource_name @resource_name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
6168 6169 6170 6171 6172 6173 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 6168 def update!(**args) @campaign = args[:campaign] if args.key?(:campaign) @label = args[:label] if args.key?(:label) @owner_customer_id = args[:owner_customer_id] if args.key?(:owner_customer_id) @resource_name = args[:resource_name] if args.key?(:resource_name) end |