Class: Flickr::Count
- Inherits:
-
Object
- Object
- Flickr::Count
- Defined in:
- lib/flickr/base.rb
Instance Attribute Summary collapse
-
#count ⇒ Object
readonly
Returns the value of attribute count.
-
#fromdate ⇒ Object
readonly
Returns the value of attribute fromdate.
-
#todate ⇒ Object
readonly
Returns the value of attribute todate.
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(count, fromdate, todate) ⇒ Count
constructor
A new instance of Count.
Constructor Details
#initialize(count, fromdate, todate) ⇒ Count
Returns a new instance of Count.
657 658 659 660 661 |
# File 'lib/flickr/base.rb', line 657 def initialize(count,fromdate,todate) @count = count @fromdate = fromdate @todate = todate end |
Instance Attribute Details
#count ⇒ Object (readonly)
Returns the value of attribute count.
656 657 658 |
# File 'lib/flickr/base.rb', line 656 def count @count end |
#fromdate ⇒ Object (readonly)
Returns the value of attribute fromdate.
656 657 658 |
# File 'lib/flickr/base.rb', line 656 def fromdate @fromdate end |
#todate ⇒ Object (readonly)
Returns the value of attribute todate.
656 657 658 |
# File 'lib/flickr/base.rb', line 656 def todate @todate end |