class PlentyClient::Basket::Item

Constants

CREATE_BASKET_ITEM
LIST_BASKET_ITEMS

Public Class Methods

create(body = {}) click to toggle source
# File lib/plenty_client/basket/item.rb, line 17
def create(body = {})
  post(CREATE_BASKET_ITEM, body)
end
list(headers = {}, &block) click to toggle source
# File lib/plenty_client/basket/item.rb, line 13
def list(headers = {}, &block)
  get(LIST_BASKET_ITEMS, headers, &block)
end