stripity_stripe v2.7.0 Stripe.TaxID View Source
You can add one or multiple tax IDs to a customer. A customer's tax IDs are displayed on invoices and credit notes issued for the customer.
Link to this section Summary
Functions
Creates a new TaxID
object for a customer.
Deletes an existing TaxID
object.
Returns a list of tax IDs for a customer.
Retrieves the TaxID
object with the given identifier.
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %Stripe.TaxID{
country: String.t(),
created: Stripe.timestamp(),
customer: Stripe.id() | Stripe.Customer.t() | nil,
id: Stripe.id(),
livemode: boolean(),
object: String.t(),
type: String.t(),
value: String.t(),
verification: tax_info_verification() | nil
}
t() :: %Stripe.TaxID{ country: String.t(), created: Stripe.timestamp(), customer: Stripe.id() | Stripe.Customer.t() | nil, id: Stripe.id(), livemode: boolean(), object: String.t(), type: String.t(), value: String.t(), verification: tax_info_verification() | nil }
Link to this type
tax_info_verification() View Source
Link to this section Functions
Link to this function
create(params, opts \\ [])
View Source
create(params, opts \\ [])
View Source
create(params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()}
when params: %{customer: Stripe.id(), type: String.t(), value: String.t()} | %{}
create(params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{customer: Stripe.id(), type: String.t(), value: String.t()} | %{}
Creates a new TaxID
object for a customer.
Example
Stripe.TaxId.create(%{customer: "cus_FDVoXj36NmFrao", type: "eu_vat", value: "DE123456789"})
Stripe.TaxId.create(%{customer: %Stripe.Customer{id: "cus_FDVoXj36NmFrao"}, type: "eu_vat", value: "DE123456789"})
See Stripe docs
Link to this function
delete(id, params, opts \\ [])
View Source
delete(id, params, opts \\ [])
View Source
delete(Stripe.id() | t(), map(), Stripe.options()) ::
{:ok, t()} | {:error, Stripe.Error.t()}
delete(Stripe.id() | t(), map(), Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()}
Deletes an existing TaxID
object.
Example
Stripe.TaxId.delete("txi_123456789", %{customer: "cus_FDVoXj36NmFrao")})
Stripe.TaxId.delete("txi_123456789", %{customer: %Stripe.Customer{id: "cus_FDVoXj36NmFrao"}})
Stripe.TaxId.delete(%Stripe.TaxID{id: "txi_123456789"}, %{customer: "cus_FDVoXj36NmFrao"})
See Stripe docs
Link to this function
list(params, opts \\ [])
View Source
list(params, opts \\ [])
View Source
list(params, Stripe.options()) ::
{:ok, Stripe.List.t(t())} | {:error, Stripe.Error.t()}
when params: %{
:customer => Stripe.id() | Stripe.Customer.t(),
optional(:ending_before) => t() | Stripe.id(),
optional(:limit) => 1..100,
optional(:starting_after) => t() | Stripe.id()
}
list(params, Stripe.options()) :: {:ok, Stripe.List.t(t())} | {:error, Stripe.Error.t()} when params: %{ :customer => Stripe.id() | Stripe.Customer.t(), optional(:ending_before) => t() | Stripe.id(), optional(:limit) => 1..100, optional(:starting_after) => t() | Stripe.id() }
Returns a list of tax IDs for a customer.
Example
Stripe.TaxId.list(%{customer: "cus_FDVoXj36NmFrao")})
See Stripe docs
Link to this function
retrieve(id, params, opts \\ [])
View Source
retrieve(id, params, opts \\ [])
View Source
retrieve(Stripe.id() | t(), map(), Stripe.options()) ::
{:ok, t()} | {:error, Stripe.Error.t()}
retrieve(Stripe.id() | t(), map(), Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()}
Retrieves the TaxID
object with the given identifier.
Example
Stripe.TaxId.retrieve("txi_123456789", %{customer: "cus_FDVoXj36NmFrao")})
Stripe.TaxId.retrieve("txi_123456789", %{customer: %Stripe.Customer{id: "cus_FDVoXj36NmFrao"}})
See Stripe docs