class Google::Apis::AbusiveexperiencereportV1::SiteSummaryResponse

Response message for GetSiteSummary.

Attributes

abusive_status[RW]

The site's Abusive Experience Report status. Corresponds to the JSON property `abusiveStatus` @return [String]

enforcement_time[RW]

The time at which [enforcement](support.google.com/webtools/answer/ 7538608) against the site began or will begin. Not set when the filter_status is OFF. Corresponds to the JSON property `enforcementTime` @return [String]

filter_status[RW]

The site's [enforcement status](support.google.com/webtools/answer/ 7538608). Corresponds to the JSON property `filterStatus` @return [String]

last_change_time[RW]

The time at which the site's status last changed. Corresponds to the JSON property `lastChangeTime` @return [String]

report_url[RW]

A link to the full Abusive Experience Report for the site. Not set in ViolatingSitesResponse. Note that you must complete the [Search Console verification process](support.google.com/webmasters/answer/9008080) for the site before you can access the full report. Corresponds to the JSON property `reportUrl` @return [String]

reviewed_site[RW]

The name of the reviewed site, e.g. `google.com`. Corresponds to the JSON property `reviewedSite` @return [String]

under_review[RW]

Whether the site is currently under review. Corresponds to the JSON property `underReview` @return [Boolean]

under_review?[RW]

Whether the site is currently under review. Corresponds to the JSON property `underReview` @return [Boolean]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/abusiveexperiencereport_v1/classes.rb, line 76
def update!(**args)
  @abusive_status = args[:abusive_status] if args.key?(:abusive_status)
  @enforcement_time = args[:enforcement_time] if args.key?(:enforcement_time)
  @filter_status = args[:filter_status] if args.key?(:filter_status)
  @last_change_time = args[:last_change_time] if args.key?(:last_change_time)
  @report_url = args[:report_url] if args.key?(:report_url)
  @reviewed_site = args[:reviewed_site] if args.key?(:reviewed_site)
  @under_review = args[:under_review] if args.key?(:under_review)
end