Class: Google::Apis::CloudsearchV1::ContentReportSummary

Inherits:
Object
  • Object
show all
Includes:
Google::Apis::Core::Hashable, Google::Apis::Core::JsonObjectSupport
Defined in:
lib/google/apis/cloudsearch_v1/classes.rb,
lib/google/apis/cloudsearch_v1/representations.rb,
lib/google/apis/cloudsearch_v1/representations.rb

Overview

Summarized info of content reports. Usually less expensive to fetch than to fetch all detailed reports. Set only when the request asks for it.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ ContentReportSummary

Returns a new instance of ContentReportSummary.



6162
6163
6164
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6162

def initialize(**args)
   update!(**args)
end

Instance Attribute Details

#number_reportsFixnum

Total number of reports attached to this (revision of) message. Corresponds to the JSON property numberReports

Returns:

  • (Fixnum)


6154
6155
6156
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6154

def number_reports
  @number_reports
end

#number_reports_all_revisionsFixnum

Totoal number of reports attached to all revisions of this message (i.e. since creation). Set only when the request asks for it. Corresponds to the JSON property numberReportsAllRevisions

Returns:

  • (Fixnum)


6160
6161
6162
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6160

def number_reports_all_revisions
  @number_reports_all_revisions
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



6167
6168
6169
6170
# File 'lib/google/apis/cloudsearch_v1/classes.rb', line 6167

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