Class: Google::Apis::AdexchangesellerV2_0::SavedReport
- Inherits:
-
Object
- Object
- Google::Apis::AdexchangesellerV2_0::SavedReport
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/adexchangeseller_v2_0/classes.rb,
generated/google/apis/adexchangeseller_v2_0/representations.rb,
generated/google/apis/adexchangeseller_v2_0/representations.rb
Instance Attribute Summary collapse
-
#id ⇒ String
Unique identifier of this saved report.
-
#kind ⇒ String
Kind of resource this is, in this case adexchangeseller#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
670 671 672 |
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 670 def initialize(**args) update!(**args) end |
Instance Attribute Details
#id ⇒ String
Unique identifier of this saved report.
Corresponds to the JSON property id
658 659 660 |
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 658 def id @id end |
#kind ⇒ String
Kind of resource this is, in this case adexchangeseller#savedReport.
Corresponds to the JSON property kind
663 664 665 |
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 663 def kind @kind end |
#name ⇒ String
This saved report's name.
Corresponds to the JSON property name
668 669 670 |
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 668 def name @name end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
675 676 677 678 679 |
# File 'generated/google/apis/adexchangeseller_v2_0/classes.rb', line 675 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 |