Class: Xberg::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)


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

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)


2373
2374
2375
# File 'sig/types.rbs', line 2373

def changefreq
  @changefreq
end

#lastmodString? (readonly)

Returns the value of attribute lastmod.

Returns:

  • (String, nil)


2372
2373
2374
# File 'sig/types.rbs', line 2372

def lastmod
  @lastmod
end

#priorityString? (readonly)

Returns the value of attribute priority.

Returns:

  • (String, nil)


2374
2375
2376
# File 'sig/types.rbs', line 2374

def priority
  @priority
end

#urlString (readonly)

Returns the value of attribute url.

Returns:

  • (String)


2371
2372
2373
# File 'sig/types.rbs', line 2371

def url
  @url
end