Class: Google::Apis::AdsensehostV4_1::Report::Header

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Methods included from Core::JsonObjectSupport

#to_json

Methods included from Core::Hashable

process_value, #to_h

Constructor Details

#initialize(**args) ⇒ Header

Returns a new instance of Header.



752
753
754
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 752

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

Instance Attribute Details

#currencyString

The currency of this column. Only present if the header type is METRIC_CURRENCY. Corresponds to the JSON property currency

Returns:

  • (String)


739
740
741
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 739

def currency
  @currency
end

#nameString

The name of the header. Corresponds to the JSON property name

Returns:

  • (String)


744
745
746
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 744

def name
  @name
end

#typeString

The type of the header; one of DIMENSION, METRIC_TALLY, METRIC_RATIO, or METRIC_CURRENCY. Corresponds to the JSON property type

Returns:

  • (String)


750
751
752
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 750

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



757
758
759
760
761
# File 'generated/google/apis/adsensehost_v4_1/classes.rb', line 757

def update!(**args)
  @currency = args[:currency] if args.key?(:currency)
  @name = args[:name] if args.key?(:name)
  @type = args[:type] if args.key?(:type)
end