Class: Tweetkit::Response::Tweets::Meta
- Inherits:
-
Object
- Object
- Tweetkit::Response::Tweets::Meta
- Defined in:
- lib/tweetkit/response.rb
Instance Attribute Summary collapse
-
#data ⇒ Object
Returns the value of attribute data.
Instance Method Summary collapse
-
#initialize(meta) ⇒ Meta
constructor
A new instance of Meta.
- #next_token ⇒ Object
- #previous_token ⇒ Object
Constructor Details
#initialize(meta) ⇒ Meta
Returns a new instance of Meta.
613 614 615 616 617 |
# File 'lib/tweetkit/response.rb', line 613 def initialize() return unless @data = end |
Instance Attribute Details
#data ⇒ Object
Returns the value of attribute data.
611 612 613 |
# File 'lib/tweetkit/response.rb', line 611 def data @data end |
Instance Method Details
#next_token ⇒ Object
619 620 621 |
# File 'lib/tweetkit/response.rb', line 619 def next_token @data['next_token'] end |
#previous_token ⇒ Object
623 624 625 |
# File 'lib/tweetkit/response.rb', line 623 def previous_token @data['previous_token'] end |