class Google::Apis::WebmastersV3::UrlCrawlErrorCountsPerType

Number of errors per day for a specific error type (defined by platform and category).

Attributes

category[RW]

The crawl error type. Corresponds to the JSON property `category` @return [String]

entries[RW]

The error count entries time series. Corresponds to the JSON property `entries` @return [Array<Google::Apis::WebmastersV3::UrlCrawlErrorCount>]

platform[RW]

The general type of Googlebot that made the request (see list of Googlebot user-agents for the user-agents used). Corresponds to the JSON property `platform` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File generated/google/apis/webmasters_v3/classes.rb, line 324
def update!(**args)
  @category = args[:category] if args.key?(:category)
  @entries = args[:entries] if args.key?(:entries)
  @platform = args[:platform] if args.key?(:platform)
end