Class: Google::Apis::AdmobV1beta::ReportFooter
- Inherits:
-
Object
- Object
- Google::Apis::AdmobV1beta::ReportFooter
- Includes:
- Core::Hashable, Core::JsonObjectSupport
- Defined in:
- generated/google/apis/admob_v1beta/classes.rb,
generated/google/apis/admob_v1beta/representations.rb,
generated/google/apis/admob_v1beta/representations.rb
Overview
Groups data available after report generation, for example, warnings and row counts. Always sent as the last message in the stream response.
Instance Attribute Summary collapse
-
#matching_row_count ⇒ Fixnum
Total number of rows that matched the request.
-
#warnings ⇒ Array<Google::Apis::AdmobV1beta::ReportWarning>
Warnings associated with generation of the report.
Instance Method Summary collapse
-
#initialize(**args) ⇒ ReportFooter
constructor
A new instance of ReportFooter.
-
#update!(**args) ⇒ Object
Update properties of this object.
Constructor Details
#initialize(**args) ⇒ ReportFooter
Returns a new instance of ReportFooter.
860 861 862 |
# File 'generated/google/apis/admob_v1beta/classes.rb', line 860 def initialize(**args) update!(**args) end |
Instance Attribute Details
#matching_row_count ⇒ Fixnum
Total number of rows that matched the request. Warning: This count does NOT
always match the number of rows in the response. Do not make that assumption
when processing the response.
Corresponds to the JSON property matchingRowCount
853 854 855 |
# File 'generated/google/apis/admob_v1beta/classes.rb', line 853 def matching_row_count @matching_row_count end |
#warnings ⇒ Array<Google::Apis::AdmobV1beta::ReportWarning>
Warnings associated with generation of the report.
Corresponds to the JSON property warnings
858 859 860 |
# File 'generated/google/apis/admob_v1beta/classes.rb', line 858 def warnings @warnings end |
Instance Method Details
#update!(**args) ⇒ Object
Update properties of this object
865 866 867 868 |
# File 'generated/google/apis/admob_v1beta/classes.rb', line 865 def update!(**args) @matching_row_count = args[:matching_row_count] if args.key?(:matching_row_count) @warnings = args[:warnings] if args.key?(:warnings) end |