Class: Google::Apis::AdsenseV1_4::SavedReport
- Inherits:
-
Object
- Object
- Google::Apis::AdsenseV1_4::SavedReport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adsense_v1_4/classes.rb,
generated/google/apis/adsense_v1_4/representations.rb,
generated/google/apis/adsense_v1_4/representations.rb
Instance Attribute Summary collapse
-
#id ⇒ String
Unique identifier of this saved report.
-
#kind ⇒ String
Kind of resource this is, in this case adsense#savedReport.
-
#name ⇒ String
This saved report's name.
Instance Method Summary collapse
-
#initialize(**args) ⇒ SavedReport
constructor
A new instance of SavedReport.
-
#update!(**args) ⇒ Object
Update properties of this object.
Methods included from Core::JsonObjectSupport
Methods included from Core::Hashable
Constructor Details
#initialize(**args) ⇒ SavedReport
Returns a new instance of SavedReport
1158 1159 1160 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1158 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Unique identifier of this saved report.
Corresponds to the JSON property id
1146 1147 1148 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1146 def id @id end |
#kind ⇒ String
Kind of resource this is, in this case adsense#savedReport.
Corresponds to the JSON property kind
1151 1152 1153 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1151 def kind @kind end |
#name ⇒ String
This saved report's name.
Corresponds to the JSON property name
1156 1157 1158 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1156 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
1163 1164 1165 1166 1167 |
# File 'generated/google/apis/adsense_v1_4/classes.rb', line 1163 def update!(**args) @id = args[:id] if args.key?(:id) @kind = args[:kind] if args.key?(:kind) @name = args[:name] if args.key?(:name) end |