Class: Google::Apis::AdsenseV2::SavedReport

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

Overview

Representation of a saved report.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ SavedReport

Returns a new instance of SavedReport.



901
902
903
# File 'lib/google/apis/adsense_v2/classes.rb', line 901

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

Instance Attribute Details

#nameString

Resource name of the report. Format: accounts/account/reports/report Corresponds to the JSON property name

Returns:

  • (String)


894
895
896
# File 'lib/google/apis/adsense_v2/classes.rb', line 894

def name
  @name
end

#titleString

Report title as specified by publisher. Corresponds to the JSON property title

Returns:

  • (String)


899
900
901
# File 'lib/google/apis/adsense_v2/classes.rb', line 899

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



906
907
908
909
# File 'lib/google/apis/adsense_v2/classes.rb', line 906

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