Sha256: 64b4867a7116d559c7d1f7ed537daa52044855211a3d5a3fd7544d2f5aa13cd8
Contents?: true
Size: 645 Bytes
Versions: 49
Compression:
Stored size: 645 Bytes
Contents
# File generated from our OpenAPI spec # frozen_string_literal: true module Stripe # [Tax codes](https://stripe.com/docs/tax/tax-categories) classify goods and services for tax purposes. class TaxCode < APIResource extend Stripe::APIOperations::List OBJECT_NAME = "tax_code" def self.object_name "tax_code" end # A list of [all tax codes available](https://stripe.com/docs/tax/tax-categories) to add to Products in order to allow specific tax calculations. def self.list(filters = {}, opts = {}) request_stripe_object(method: :get, path: "/v1/tax_codes", params: filters, opts: opts) end end end
Version data entries
49 entries across 49 versions & 1 rubygems