Class: Google::Apis::SearchconsoleV1::WmxSitemapContent

Inherits:
Object
  • Object
show all
Includes:
Core::Hashable, Core::JsonObjectSupport
Defined in:
generated/google/apis/searchconsole_v1/classes.rb,
generated/google/apis/searchconsole_v1/representations.rb,
generated/google/apis/searchconsole_v1/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.



587
588
589
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 587

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)


575
576
577
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 575

def indexed
  @indexed
end

#submittedFixnum

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

Returns:

  • (Fixnum)


580
581
582
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 580

def 
  @submitted
end

#typeString

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

Returns:

  • (String)


585
586
587
# File 'generated/google/apis/searchconsole_v1/classes.rb', line 585

def type
  @type
end

Instance Method Details

#update!(**args) ⇒ Object

Update properties of this object



592
593
594
595
596
# File 'generated/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