stripity_stripe v2.8.0 Stripe.AccountLink View Source
Work with Stripe Connect account link objects.
You can:
- Create an account link
Stripe API reference: https://stripe.com/docs/api/account_links
Link to this section Summary
Functions
Create an account link.
Link to this section Types
Link to this type
t()
View Source
t()
View Source
t() :: %Stripe.AccountLink{
created: Stripe.timestamp(),
expires_at: Stripe.timestamp(),
object: String.t(),
url: String.t()
}
t() :: %Stripe.AccountLink{
created: Stripe.timestamp(),
expires_at: Stripe.timestamp(),
object: String.t(),
url: String.t()
}
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: %{
:account => Stripe.Account.t() | Stripe.id(),
:failure_url => String.t(),
:success_url => String.t(),
:type => String.t(),
optional(:collect) => String.t()
}
create(params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{ :account => Stripe.Account.t() | Stripe.id(), :failure_url => String.t(), :success_url => String.t(), :type => String.t(), optional(:collect) => String.t() }
Create an account link.