We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I'm trying to create the price with decimal values.
When I'm passing tiers in stripe_price resource:
tier { up_to = 500 unit_amount_decimal = 0.0 flat_amount_decimal = 1000.0 } tier { up_to_inf = true unit_amount_decimal = 0.1 flat_amount_decimal = 0.0 }
the resulting api call body contains zeroes on prices:
"tiers": { "0": { "flat_amount": "0", "unit_amount": "0", "up_to": "500" }, "1": { "flat_amount": "0", "unit_amount": "0", "up_to": "inf" } },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I'm trying to create the price with decimal values.
When I'm passing tiers in stripe_price resource:
the resulting api call body contains zeroes on prices:
The text was updated successfully, but these errors were encountered: