You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The spec for Stripe.Issuing.Card.create/2 specifies an optional cardholder struct as a param: optional(:cardholder) => Stripe.Issuing.Cardholder.t()
but actually passing in a cardholder struct throws protocol Enumerable not implemented for %Stripe.Issuing.Cardholder{}. Passing just cardholder.id as cardholder in the params works, though.
Seems that it's getting stuck here: lib/uri_query.ex:37: UriQuery.params/2 lib/stripe/uri.ex:35: Stripe.URI.encode_query/1
The text was updated successfully, but these errors were encountered:
The spec for
Stripe.Issuing.Card.create/2
specifies an optional cardholder struct as a param:optional(:cardholder) => Stripe.Issuing.Cardholder.t()
but actually passing in a cardholder struct throws
protocol Enumerable not implemented for %Stripe.Issuing.Cardholder{}
. Passing just cardholder.id as cardholder in the params works, though.Seems that it's getting stuck here:
lib/uri_query.ex:37: UriQuery.params/2
lib/stripe/uri.ex:35: Stripe.URI.encode_query/1
The text was updated successfully, but these errors were encountered: