class Google::Apis::AdmobV1::ReportFooter

Groups data available after report generation, for example, warnings and row counts. Always sent as the last message in the stream response.

Attributes

matching_row_count[RW]

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` @return [Fixnum]

warnings[RW]

Warnings associated with generation of the report. Corresponds to the JSON property `warnings` @return [Array<Google::Apis::AdmobV1::ReportWarning>]

Public Class Methods

new(**args) click to toggle source
# File lib/google/apis/admob_v1/classes.rb, line 860
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/admob_v1/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