View Source Stripe.TaxCode (stripity_stripe v3.2.0)
Tax codes classify goods and services for tax purposes.
Summary
Functions
A list of all tax codes available to add to Products in order to allow specific tax calculations.
Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will return the corresponding tax code information.
Types
@type t() :: %Stripe.TaxCode{ description: binary(), id: binary(), name: binary(), object: binary() }
The tax_code
type.
description
A detailed description of which types of products the tax code represents.id
Unique identifier for the object.name
A short name for the tax code.object
String representing the object's type. Objects of the same type share the same value.
Functions
@spec list( params :: %{ optional(:ending_before) => binary(), optional(:expand) => [binary()], optional(:limit) => integer(), optional(:starting_after) => binary() }, opts :: Keyword.t() ) :: {:ok, Stripe.List.t(t())} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
A list of all tax codes available to add to Products in order to allow specific tax calculations.
Details
- Method:
get
- Path:
/v1/tax_codes
@spec retrieve( id :: binary(), params :: %{optional(:expand) => [binary()]}, opts :: Keyword.t() ) :: {:ok, t()} | {:error, Stripe.ApiErrors.t()} | {:error, term()}
Retrieves the details of an existing tax code. Supply the unique tax code ID and Stripe will return the corresponding tax code information.
Details
- Method:
get
- Path:
/v1/tax_codes/{id}