Skip to content

Commit

Permalink
Merge pull request #13 from robinch/add-cash-balance-to-customer-reso…
Browse files Browse the repository at this point in the history
…urce

feat: add cash_balance to Customer resource
  • Loading branch information
kaminkaa authored Oct 21, 2024
2 parents d0b281b + 376b67f commit 8d8c6e3
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 8d8c6e3

Please sign in to comment.