Class: Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesCustomColumnHeader
- Inherits:
-
Object
- Object
- Google::Apis::Searchads360V0::GoogleAdsSearchads360V0ServicesCustomColumnHeader
- 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
Message for custom column header.
Instance Attribute Summary collapse
-
#id ⇒ Fixnum
The custom column ID.
-
#name ⇒ String
The user defined name of the custom column.
-
#references_metrics ⇒ Boolean
(also: #references_metrics?)
True when the custom column references metrics.
Instance Method Summary collapse
-
#initialize(**args) ⇒ GoogleAdsSearchads360V0ServicesCustomColumnHeader
constructor
A new instance of GoogleAdsSearchads360V0ServicesCustomColumnHeader.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ GoogleAdsSearchads360V0ServicesCustomColumnHeader
Returns a new instance of GoogleAdsSearchads360V0ServicesCustomColumnHeader.
3467 3468 3469 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 3467 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ Fixnum
The custom column ID.
Corresponds to the JSON property id
3454 3455 3456 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 3454 def id @id end |
#name ⇒ String
The user defined name of the custom column.
Corresponds to the JSON property name
3459 3460 3461 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 3459 def name @name end |
#references_metrics ⇒ Boolean Also known as: references_metrics?
True when the custom column references metrics.
Corresponds to the JSON property referencesMetrics
3464 3465 3466 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 3464 def references_metrics @references_metrics end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
3472 3473 3474 3475 3476 |
# File 'lib/google/apis/searchads360_v0/classes.rb', line 3472 def update!(**args) @id = args[:id] if args.key?(:id) @name = args[:name] if args.key?(:name) @references_metrics = args[:references_metrics] if args.key?(:references_metrics) end |