Class: Google::Apis::AdsenseV2::SavedReport
- Inherits:
-
Object
- Object
- Google::Apis::AdsenseV2::SavedReport
- 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
-
#name ⇒ String
Resource name of the report.
-
#title ⇒ String
Report title as specified by publisher.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SavedReport
constructor
A new instance of SavedReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
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
#name ⇒ String
Resource name of the report. Format: accounts/account/reports/report
Corresponds to the JSON property name
894 895 896 |
# File 'lib/google/apis/adsense_v2/classes.rb', line 894 def name @name end |
#title ⇒ String
Report title as specified by publisher.
Corresponds to the JSON property title
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 |