Class: Google::Apis::WebmastersV3::WmxSitemapContent

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/webmasters_v3/classes.rb,
generated/google/apis/webmasters_v3/representations.rb,
generated/google/apis/webmasters_v3/representations.rb

Overview

Information about the various content types in the sitemap.

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(**args) ⇒ WmxSitemapContent

Returns a new instance of WmxSitemapContent.



399
400
401
# File 'generated/google/apis/webmasters_v3/classes.rb', line 399

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

Instance Attribute Details

#indexedFixnum

The number of URLs from the sitemap that were indexed (of the content type). Corresponds to the JSON property indexed

Returns:

  • (Fixnum)


387
388
389
# File 'generated/google/apis/webmasters_v3/classes.rb', line 387

def indexed
  @indexed
end

#submittedFixnum

The number of URLs in the sitemap (of the content type). Corresponds to the JSON property submitted

Returns:

  • (Fixnum)


392
393
394
# File 'generated/google/apis/webmasters_v3/classes.rb', line 392

def 
  @submitted
end

#typeString

The specific type of content in this sitemap. For example: web. Corresponds to the JSON property type

Returns:

  • (String)


397
398
399
# File 'generated/google/apis/webmasters_v3/classes.rb', line 397

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



404
405
406
407
408
# File 'generated/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