Module: Epages::REST::TaxClasses
Overview
implements the calls in developer.epages.com/apps/api-reference/resource-tax-classes
Instance Method Summary collapse
-
#tax_class(tax, options = {}) ⇒ Object
implements the call developer.epages.com/apps/api-reference/get-shops-shopid-tax-classes-taxclassid.html.
-
#tax_classes(options = {}) ⇒ Object
implements the call developer.epages.com/apps/api-reference/get-shops-shopid-tax-classes.html.
Methods included from Utils
#epages_id, #format_date, #format_dates_options, #parse_legal_info, #parse_links, #parse_price_info, #parse_product_lowest_price, #parse_product_variations, #parse_suggestions_to_products, #parse_variation_object, #parse_variations, #perform_delete_request, #perform_delete_with_object, #perform_get_request, #perform_get_with_key_and_objects, #perform_get_with_object, #perform_get_with_objects, #perform_multipart_post_with_objects, #perform_patch_with_object, #perform_post_request, #perform_post_with_key_and_objects, #perform_post_with_object, #perform_post_with_objects, #perform_put_request, #perform_put_with_object, #perform_request, #perform_request_with_key_and_objects, #perform_request_with_object, #perform_request_with_objects, #process_thread
Instance Method Details
#tax_class(tax, options = {}) ⇒ Object
10 11 12 13 |
# File 'lib/epages/rest/tax_classes.rb', line 10 def tax_class(tax, = {}) id = epages_id(tax) perform_get_with_object("/tax-classes/#{id}", , Epages::TaxClass) end |
#tax_classes(options = {}) ⇒ Object
implements the call developer.epages.com/apps/api-reference/get-shops-shopid-tax-classes.html
16 17 18 |
# File 'lib/epages/rest/tax_classes.rb', line 16 def tax_classes( = {}) perform_get_with_key_and_objects("/tax-classes/", , :items, Epages::TaxClass) end |