Skip to content

Commit

Permalink
feat: add cash_balance to Customer resource
Browse files Browse the repository at this point in the history
  • Loading branch information
Robin Chowdhury committed Oct 21, 2024
1 parent d0b281b commit 376b67f
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions lib/stripe/core_resources/customer.ex
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ defmodule Stripe.Customer do
object: String.t(),
address: Stripe.Types.address() | nil,
balance: integer,
cash_balance: Stripe.CashBalance.t() | nil,
created: Stripe.timestamp(),
currency: String.t() | nil,
default_source: Stripe.id() | Stripe.Source.t() | nil,
Expand Down Expand Up @@ -49,6 +50,7 @@ defmodule Stripe.Customer do
:object,
:address,
:balance,
:cash_balance,
:created,
:currency,
:default_source,
Expand Down

0 comments on commit 376b67f

Please sign in to comment.