Class: Crawlberg::FeedInfo

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

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initializeFeedInfo

Returns a new instance of FeedInfo.

Parameters:

  • url: (String)
  • title: (String)
  • feed_type: (FeedType)


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

def initialize: (?url: String, ?title: String, ?feed_type: FeedType) -> void

Instance Attribute Details

#feed_typeFeedType?

Returns the value of attribute feed_type.

Returns:



281
282
283
# File 'sig/types.rbs', line 281

def feed_type
  @feed_type
end

#titleString?

Returns the value of attribute title.

Returns:

  • (String, nil)


280
281
282
# File 'sig/types.rbs', line 280

def title
  @title
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


279
280
281
# File 'sig/types.rbs', line 279

def url
  @url
end