class Google::Apis::SearchconsoleV1::WmxSitemapContent

Information about the various content types in the sitemap.

Attributes

indexed[RW]

*Deprecated; do not use.* Corresponds to the JSON property `indexed` @return [Fixnum]

submitted[RW]

The number of URLs in the sitemap (of the content type). Corresponds to the JSON property `submitted` @return [Fixnum]

type[RW]

The specific type of content in this sitemap. For example: `web`. Corresponds to the JSON property `type` @return [String]

Public Class Methods

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

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/searchconsole_v1/classes.rb, line 592
def update!(**args)
  @indexed = args[:indexed] if args.key?(:indexed)
  @submitted = args[:submitted] if args.key?(:submitted)
  @type = args[:type] if args.key?(:type)
end