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)


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

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

Instance Attribute Details

#feed_typeFeedType?

Returns the value of attribute feed_type.

Returns:



272
273
274
# File 'sig/types.rbs', line 272

def feed_type
  @feed_type
end

#titleString?

Returns the value of attribute title.

Returns:

  • (String, nil)


271
272
273
# File 'sig/types.rbs', line 271

def title
  @title
end

#urlString?

Returns the value of attribute url.

Returns:

  • (String, nil)


270
271
272
# File 'sig/types.rbs', line 270

def url
  @url
end