Skip to content

Commit 47d86a0

Browse files
committed
add location back to types
1 parent 20c7c37 commit 47d86a0

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

lib/stripe/subscriptions/invoice.ex

-3
Original file line numberDiff line numberDiff line change
@@ -12,9 +12,6 @@ defmodule Stripe.Invoice do
1212
Does not take options yet.
1313
1414
Stripe API reference: https://stripe.com/docs/api#invoice
15-
16-
DEPRECATED BUT STILL IN USE:
17-
closed
1815
"""
1916

2017
use Stripe.Entity

lib/stripe/types.ex

+6
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,12 @@ defmodule Stripe.Types do
3636
town: String.t() | nil
3737
}
3838

39+
@type location :: %{
40+
country: String.t(),
41+
source: String.t(),
42+
state: String.t()
43+
}
44+
3945
@type metadata :: %{
4046
optional(String.t()) => String.t()
4147
}

0 commit comments

Comments
 (0)