Class: OnebusawaySDK::Resources::Shape
- Inherits:
-
Object
- Object
- OnebusawaySDK::Resources::Shape
- Defined in:
- lib/onebusaway_sdk/resources/shape.rb
Instance Method Summary collapse
-
#initialize(client:) ⇒ Shape
constructor
private
A new instance of Shape.
-
#retrieve(shape_id, request_options: {}) ⇒ OnebusawaySDK::Models::ShapeRetrieveResponse
Retrieve a shape (the path traveled by a transit vehicle) by ID.
Constructor Details
#initialize(client:) ⇒ Shape
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Returns a new instance of Shape.
29 30 31 |
# File 'lib/onebusaway_sdk/resources/shape.rb', line 29 def initialize(client:) @client = client end |
Instance Method Details
#retrieve(shape_id, request_options: {}) ⇒ OnebusawaySDK::Models::ShapeRetrieveResponse
Retrieve a shape (the path traveled by a transit vehicle) by ID.
17 18 19 20 21 22 23 24 |
# File 'lib/onebusaway_sdk/resources/shape.rb', line 17 def retrieve(shape_id, params = {}) @client.request( method: :get, path: ["api/where/shape/%1$s.json", shape_id], model: OnebusawaySDK::Models::ShapeRetrieveResponse, options: params[:request_options] ) end |