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.



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

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)


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

def name
  @name
end

#titleString

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

Returns:

  • (String)


903
904
905
# File 'lib/google/apis/adsense_v2/classes.rb', line 903

def title
  @title
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



910
911
912
913
# File 'lib/google/apis/adsense_v2/classes.rb', line 910

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