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)


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

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

Instance Attribute Details

#changefreqString?

Returns the value of attribute changefreq.

Returns:

  • (String, nil)


2291
2292
2293
# File 'sig/types.rbs', line 2291

def changefreq
  @changefreq
end

#lastmodString?

Returns the value of attribute lastmod.

Returns:

  • (String, nil)


2290
2291
2292
# File 'sig/types.rbs', line 2290

def lastmod
  @lastmod
end

#priorityString?

Returns the value of attribute priority.

Returns:

  • (String, nil)


2292
2293
2294
# File 'sig/types.rbs', line 2292

def priority
  @priority
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


2289
2290
2291
# File 'sig/types.rbs', line 2289

def url
  @url
end