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
Simply trying to get a list of Issuing Cards for a user.
var cardService = new Issuing.CardService();
var cards = await cardService.ListAsync(new CardListOptions
{
CardholderId = stripeCardholderId,
});
Getting this Exception:
Newtonsoft.Json.JsonSerializationException: Error converting value {null} to type 'System.Int64'. Path 'authorization_controls.max_amount', line 8, position 22. ---> System.InvalidCastException: Null object cannot be converted to a value type.
Stripe.net SDK v21.7.0
Simply trying to get a list of Issuing Cards for a user.
Getting this Exception:
Looks like the values in AuthorizationControls.cs should be nullable?
The text was updated successfully, but these errors were encountered: