stripity_stripe v2.7.0 Stripe.Source View Source
Work with Stripe source objects.
Stripe API reference: https://stripe.com/docs/api#sources
Link to this section Summary
Functions
Attach a source to a customer.
Create a source.
Detach a source from a customer.
Retrieve a source.
Update a source.
Link to this section Types
Link to this type
ach_credit_transfer() View Source
Link to this type
ach_debit() View Source
Link to this type
alipay() View Source
Link to this type
bancontact() View Source
Link to this type
bitcoin() View Source
Link to this type
card()
View Source
card()
View Source
card() :: %{
address_line1_check: String.t() | nil,
address_zip_check: String.t() | nil,
brand: String.t() | nil,
country: String.t() | nil,
cvc_check: String.t() | nil,
dynamic_last4: String.t() | nil,
exp_month: integer() | nil,
exp_year: integer() | nil,
fingerprint: String.t(),
funding: String.t() | nil,
last4: String.t() | nil,
skip_validation: boolean(),
three_d_secure: String.t(),
tokenization_method: String.t() | nil
}
card() :: %{ address_line1_check: String.t() | nil, address_zip_check: String.t() | nil, brand: String.t() | nil, country: String.t() | nil, cvc_check: String.t() | nil, dynamic_last4: String.t() | nil, exp_month: integer() | nil, exp_year: integer() | nil, fingerprint: String.t(), funding: String.t() | nil, last4: String.t() | nil, skip_validation: boolean(), three_d_secure: String.t(), tokenization_method: String.t() | nil }
Link to this type
code_verification_flow() View Source
Link to this type
customer()
View Source
customer()
View Source
customer() :: Stripe.id()
customer() :: Stripe.id()
Link to this type
eps() View Source
Link to this type
giropay() View Source
Link to this type
ideal() View Source
Link to this type
multibanco()
View Source
multibanco()
View Source
multibanco() :: %{
entity: String.t() | nil,
reference: String.t() | nil,
refund_account_holder_address_city: String.t() | nil,
refund_account_holder_address_country: String.t() | nil,
refund_account_holder_address_line1: String.t() | nil,
refund_account_holder_address_line2: String.t() | nil,
refund_account_holder_address_postal_code: String.t() | nil,
refund_account_holder_address_state: String.t() | nil,
refund_account_holder_name: String.t() | nil,
refund_iban: String.t() | nil
}
multibanco() :: %{ entity: String.t() | nil, reference: String.t() | nil, refund_account_holder_address_city: String.t() | nil, refund_account_holder_address_country: String.t() | nil, refund_account_holder_address_line1: String.t() | nil, refund_account_holder_address_line2: String.t() | nil, refund_account_holder_address_postal_code: String.t() | nil, refund_account_holder_address_state: String.t() | nil, refund_account_holder_name: String.t() | nil, refund_iban: String.t() | nil }
Link to this type
owner()
View Source
owner()
View Source
owner() :: %{
address: Stripe.Types.address() | nil,
email: String.t() | nil,
name: String.t() | nil,
phone: String.t() | nil,
verifired_address: Stripe.Types.address() | nil,
verified_email: String.t() | nil,
verified_name: String.t() | nil,
verified_phone: String.t() | nil
}
owner() :: %{ address: Stripe.Types.address() | nil, email: String.t() | nil, name: String.t() | nil, phone: String.t() | nil, verifired_address: Stripe.Types.address() | nil, verified_email: String.t() | nil, verified_name: String.t() | nil, verified_phone: String.t() | nil }
Link to this type
p24()
View Source
p24()
View Source
p24() :: %{reference: String.t() | nil}
p24() :: %{reference: String.t() | nil}
Link to this type
receiver_flow() View Source
Link to this type
redirect_flow() View Source
Link to this type
sepa_debit() View Source
Link to this type
sofort() View Source
Link to this type
source_type()
View Source
source_type()
View Source
source_type() :: String.t()
source_type() :: String.t()
Link to this type
t()
View Source
t()
View Source
t() :: %Stripe.Source{
ach_credit_transfer: ach_credit_transfer() | nil,
ach_debit: ach_debit() | nil,
alipay: alipay() | nil,
amount: non_neg_integer() | nil,
bancontact: bancontact() | nil,
bitcoin: bitcoin() | nil,
card: card() | nil,
client_secret: String.t(),
code_verification: code_verification_flow() | nil,
created: Stripe.timestamp(),
currency: String.t() | nil,
customer: term(),
eps: eps() | nil,
flow: String.t(),
giropay: giropay() | nil,
id: Stripe.id(),
ideal: ideal() | nil,
livemode: boolean(),
metadata: Stripe.Types.metadata(),
multibanco: multibanco() | nil,
object: String.t(),
owner: owner() | nil,
p24: p24() | nil,
receiver: receiver_flow() | nil,
redirect: redirect_flow() | nil,
sepa_debit: sepa_debit() | nil,
sofort: sofort() | nil,
statement_descriptor: String.t() | nil,
status: String.t(),
three_d_secure: three_d_secure() | nil,
type: source_type(),
usage: String.t() | nil
}
t() :: %Stripe.Source{ ach_credit_transfer: ach_credit_transfer() | nil, ach_debit: ach_debit() | nil, alipay: alipay() | nil, amount: non_neg_integer() | nil, bancontact: bancontact() | nil, bitcoin: bitcoin() | nil, card: card() | nil, client_secret: String.t(), code_verification: code_verification_flow() | nil, created: Stripe.timestamp(), currency: String.t() | nil, customer: term(), eps: eps() | nil, flow: String.t(), giropay: giropay() | nil, id: Stripe.id(), ideal: ideal() | nil, livemode: boolean(), metadata: Stripe.Types.metadata(), multibanco: multibanco() | nil, object: String.t(), owner: owner() | nil, p24: p24() | nil, receiver: receiver_flow() | nil, redirect: redirect_flow() | nil, sepa_debit: sepa_debit() | nil, sofort: sofort() | nil, statement_descriptor: String.t() | nil, status: String.t(), three_d_secure: three_d_secure() | nil, type: source_type(), usage: String.t() | nil }
Link to this type
three_d_secure() View Source
Link to this section Functions
Link to this function
attach(params, opts \\ [])
View Source
attach(params, opts \\ [])
View Source
attach(map(), Keyword.t()) :: {:ok, t()} | {:error, Stripe.Error.t()}
attach(map(), Keyword.t()) :: {:ok, t()} | {:error, Stripe.Error.t()}
Attach a source to a customer.
Link to this function
create(params, opts \\ [])
View Source
create(params, opts \\ [])
View Source
create(params, Keyword.t()) :: {:ok, t()} | {:error, Stripe.Error.t()}
when params: %{
:type => String.t(),
optional(:amount) => non_neg_integer(),
optional(:currency) => String.t(),
optional(:flow) => String.t(),
optional(:mandate) => map(),
optional(:metadata) => Stripe.Types.metadata(),
optional(:owner) => owner(),
optional(:receiver) => receiver_flow(),
optional(:redirect) => redirect_flow(),
optional(:statement_descriptor) => String.t(),
optional(:token) => String.t(),
optional(:usage) => String.t()
}
create(params, Keyword.t()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{ :type => String.t(), optional(:amount) => non_neg_integer(), optional(:currency) => String.t(), optional(:flow) => String.t(), optional(:mandate) => map(), optional(:metadata) => Stripe.Types.metadata(), optional(:owner) => owner(), optional(:receiver) => receiver_flow(), optional(:redirect) => redirect_flow(), optional(:statement_descriptor) => String.t(), optional(:token) => String.t(), optional(:usage) => String.t() }
Create a source.
Link to this function
detach(id, params, opts \\ [])
View Source
detach(id, params, opts \\ [])
View Source
detach(Stripe.id() | t(), map(), Stripe.options()) ::
{:ok, t()} | {:error, Stripe.Error.t()}
detach(Stripe.id() | t(), map(), Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()}
Detach a source from a customer.
Link to this function
retrieve(id, params, opts \\ [])
View Source
retrieve(id, params, opts \\ [])
View Source
retrieve(Stripe.id() | t(), params, Stripe.options()) ::
{:ok, t()} | {:error, Stripe.Error.t()}
when params: %{optional(:client_secret) => String.t()}
retrieve(Stripe.id() | t(), params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{optional(:client_secret) => String.t()}
Retrieve a source.
Link to this function
update(id, params, opts \\ [])
View Source
update(id, params, opts \\ [])
View Source
update(Stripe.id() | t(), params, Stripe.options()) ::
{:ok, t()} | {:error, Stripe.Error.t()}
when params: %{
optional(:mandate) => map(),
optional(:metadata) => Stripe.Types.metadata(),
optional(:owner) => owner()
}
update(Stripe.id() | t(), params, Stripe.options()) :: {:ok, t()} | {:error, Stripe.Error.t()} when params: %{ optional(:mandate) => map(), optional(:metadata) => Stripe.Types.metadata(), optional(:owner) => owner() }
Update a source.
Takes the id
and a map of changes