We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 20c7c37 commit 47d86a0Copy full SHA for 47d86a0
lib/stripe/subscriptions/invoice.ex
@@ -12,9 +12,6 @@ defmodule Stripe.Invoice do
12
Does not take options yet.
13
14
Stripe API reference: https://stripe.com/docs/api#invoice
15
-
16
- DEPRECATED BUT STILL IN USE:
17
- closed
18
"""
19
20
use Stripe.Entity
lib/stripe/types.ex
@@ -36,6 +36,12 @@ defmodule Stripe.Types do
36
town: String.t() | nil
37
}
38
39
+ @type location :: %{
40
+ country: String.t(),
41
+ source: String.t(),
42
+ state: String.t()
43
+ }
44
+
45
@type metadata :: %{
46
optional(String.t()) => String.t()
47
0 commit comments