class PlentyClient::ItemSet::Config

Constants

FIND_ITEM_SET_CONFIGS
UPDATE_ITEM_SET_CONFIGS

Public Class Methods

find(item_set_id, headers = {}, &block) click to toggle source
# File lib/plenty_client/item_set/config.rb, line 13
def find(item_set_id, headers = {}, &block)
  get(build_endpoint(FIND_ITEM_SET_CONFIGS, item_set: item_set_id), headers, &block)
end
update(item_set_id, body = {}) click to toggle source
# File lib/plenty_client/item_set/config.rb, line 17
def update(item_set_id, body = {})
  put(build_endpoint(UPDATE_ITEM_SET_CONFIGS, item_set: item_set_id), body)
end