S76 Stripe v0.1.5 Stripe.Card View Source

The Stripe Card object.

See https://stripe.com/docs/api/curl#cards for further details.

Link to this section Summary

Link to this section Types

Link to this type

t()

View Source
t() :: %Stripe.Card{
  address_city: nil | String.t(),
  address_country: nil | String.t(),
  address_line1: nil | String.t(),
  address_line1_check: nil | :pass | :fail | :unavailable | :unchecked,
  address_line2: nil | String.t(),
  address_state: nil | String.t(),
  address_zip: nil | String.t(),
  address_zip_check: nil | :pass | :fail | :unavailable | :unchecked,
  brand: String.t(),
  country: String.t(),
  customer: Stripe.reference(Stripe.Customer.t()),
  cvc_check: nil | :pass | :fail | :unavailable | :unchecked,
  dynamic_last4: nil | String.t(),
  exp_month: pos_integer(),
  exp_year: pos_integer(),
  fingerprint: String.t(),
  funding: :credit | :debit | :prepaid | :unknown,
  id: nil | String.t(),
  last4: String.t(),
  metadata: Stripe.metadata(),
  name: nil | String.t(),
  tokenization_method: nil | :apple_pay | :android_pay
}