Class: Crawlberg::SitemapUrl

Inherits:
Object
  • Object
show all
Defined in:
sig/types.rbs

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeSitemapUrl

Returns a new instance of SitemapUrl.

Parameters:

  • url: (String)
  • lastmod: (String)
  • changefreq: (String)
  • priority: (String)


471
# File 'sig/types.rbs', line 471

def initialize: (?url: String, ?lastmod: String, ?changefreq: String, ?priority: String) -> void

Instance Attribute Details

#changefreqString? (readonly)

Returns the value of attribute changefreq.

Returns:

  • (String, nil)


468
469
470
# File 'sig/types.rbs', line 468

def changefreq
  @changefreq
end

#lastmodString? (readonly)

Returns the value of attribute lastmod.

Returns:

  • (String, nil)


467
468
469
# File 'sig/types.rbs', line 467

def lastmod
  @lastmod
end

#priorityString? (readonly)

Returns the value of attribute priority.

Returns:

  • (String, nil)


469
470
471
# File 'sig/types.rbs', line 469

def priority
  @priority
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


466
467
468
# File 'sig/types.rbs', line 466

def url
  @url
end