class PlentyClient::Order::Shipping::Profile

Constants

FIND_SHIPPING_PRESETS
LIST_SHIPPING_PRESET

Public Class Methods

find(preset_id, headers = {}, &block) click to toggle source
# File lib/plenty_client/order/shipping/profile.rb, line 18
def find(preset_id, headers = {}, &block)
  get(build_endpoint(FIND_SHIPPING_PRESETS, preset: preset_id), headers, &block)
end
list(headers = {}, &block) click to toggle source
# File lib/plenty_client/order/shipping/profile.rb, line 14
def list(headers = {}, &block)
  get(build_endpoint(LIST_SHIPPING_PRESET), headers, &block)
end