Method: EasyPost::Services::CustomsItem#retrieve
- Defined in:
- lib/easypost/services/customs_item.rb
#retrieve(id) ⇒ Object
Retrieve a CustomsItem object
14 15 16 17 18 |
# File 'lib/easypost/services/customs_item.rb', line 14 def retrieve(id) response = @client.make_request(:get, "customs_items/#{id}") EasyPost::InternalUtilities::Json.convert_json_to_object(response, MODEL_CLASS) end |