stripity_stripe v2.0.0-alpha.1 Stripe.Account

Work with Stripe account objects.

You can:

  • Retrieve your own account
  • Retrieve an account with a specified id

This module does not yet support managed accounts.

Stripe API reference: https://stripe.com/docs/api#account

Summary

Functions

Retrieve your own account without options

Retrieve your own account with options

Retrieve an account with a specified id

Types

t()
t :: %Stripe.Account{business_name: term, business_primary_color: term, business_url: term, charges_enabled: term, country: term, default_currency: term, details_submitted: term, display_name: term, email: term, id: term, managed: term, metadata: term, statement_descriptor: term, support_email: term, support_phone: term, support_url: term, timezone: term, transfers_enabled: term}

Functions

retrieve()
retrieve :: {:ok, t} | {:error, Exception.t}

Retrieve your own account without options.

retrieve(opts)
retrieve(list) :: {:ok, t} | {:error, Exception.t}

Retrieve your own account with options.

retrieve(id, opts \\ [])
retrieve(binary, list) :: {:ok, t} | {:error, Exception.t}

Retrieve an account with a specified id.