Using the latest Go client, I get the following error when creating a product:
Request error from Stripe (status 400): {"status":400,"message":"Unexpected unit_label","type":"invalid_request_error"}
Go client code:
product, err := client.Products.New(&stripe.ProductParams{
Name: stripe.String("Stored Data"),
UnitLabel: stripe.String("50 MiB"),
})
Perhaps unit_label is missing from the mocked model?
Using the latest Go client, I get the following error when creating a product:
Go client code:
Perhaps
unit_labelis missing from the mocked model?