class Google::Apis::WebmastersV3::WmxSitemapContent

Information about the various content types in the sitemap.

Attributes

indexed[RW]

The number of URLs from the sitemap that were indexed (of the content type). 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/webmasters_v3/classes.rb, line 399
def initialize(**args)
   update!(**args)
end

Public Instance Methods

update!(**args) click to toggle source

Update properties of this object

# File lib/google/apis/webmasters_v3/classes.rb, line 404
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