Class: Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCombinedAudience
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V23::GoogleAdsSearchads360V23ResourcesCombinedAudience
- 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
Describe a resource for combined audiences which includes different audiences.
Instance Attribute Summary collapse
-
#description ⇒ String
Output only.
-
#id ⇒ Fixnum
Output only.
-
#name ⇒ String
Output only.
-
#resource_name ⇒ String
Immutable.
-
#status ⇒ String
Output only.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesCombinedAudience
constructor
A new instance of GoogleAdsSearchads360V23ResourcesCombinedAudience.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V23ResourcesCombinedAudience
Returns a new instance of GoogleAdsSearchads360V23ResourcesCombinedAudience.
26287 26288 26289 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26287 def initialize(**args) update!(**args) end |
Instance Attribute Details
#description ⇒ String
Output only. Description of this combined audience.
Corresponds to the JSON property description
26261 26262 26263 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26261 def description @description end |
#id ⇒ Fixnum
Output only. ID of the combined audience.
Corresponds to the JSON property id
26266 26267 26268 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26266 def id @id end |
#name ⇒ String
Output only. Name of the combined audience. It should be unique across all
combined audiences.
Corresponds to the JSON property name
26272 26273 26274 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26272 def name @name end |
#resource_name ⇒ String
Immutable. The resource name of the combined audience. Combined audience names
have the form: customers/customer_id/combinedAudience/combined_audience_id
Corresponds to the JSON property resourceName
26279 26280 26281 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26279 def resource_name @resource_name end |
#status ⇒ String
Output only. Status of this combined audience. Indicates whether the combined
audience is enabled or removed.
Corresponds to the JSON property status
26285 26286 26287 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26285 def status @status end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
26292 26293 26294 26295 26296 26297 26298 |
# File 'lib/google/apis/searchads360_v23/classes.rb', line 26292 def update!(**args) @description = args[:description] if args.key?(:description) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @resource_name = args[:resource_name] if args.key?(:resource_name) @status = args[:status] if args.key?(:status) end |