Class: Precious::API::V2::Quotes
Constant Summary
Constants inherited from Base
Instance Attribute Summary
Attributes inherited from Base
Instance Method Summary collapse
-
#get_quote(id:) ⇒ Object
GET the-one-api.dev/v2/quote/id.
- #get_quotes(limit: 0, page: 0, offset: 0) ⇒ Object
Methods inherited from Base
Constructor Details
This class inherits a constructor from Precious::API::V2::Base
Instance Method Details
#get_quote(id:) ⇒ Object
GET the-one-api.dev/v2/quote/id
19 20 21 22 23 24 25 26 27 28 29 |
# File 'lib/precious/quotes.rb', line 19 def get_quote(id:) params = { _id: id } request( http_method: :get, endpoint: "quote", params: params ) end |
#get_quotes(limit: 0, page: 0, offset: 0) ⇒ Object
8 9 10 11 12 13 14 15 16 |
# File 'lib/precious/quotes.rb', line 8 def get_quotes(limit: 0, page: 0, offset: 0) params = set_params(limit: limit, page: page, offset: offset) request( http_method: :get, endpoint: "quote", params: params ) end |