#Users
- User object
{
id: integer
username: string
email: string
created_at: datetime(iso 8601)
updated_at: datetime(iso 8601)
}
| /** | |
| * Calculate stripe fee from amount | |
| * so you can charge stripe fee to customers | |
| * lafif <hello@lafif.me> | |
| */ | |
| var fees = { | |
| USD: { Percent: 2.9, Fixed: 0.30 }, | |
| GBP: { Percent: 2.4, Fixed: 0.20 }, | |
| EUR: { Percent: 2.4, Fixed: 0.24 }, | |
| CAD: { Percent: 2.9, Fixed: 0.30 }, |
#Users
{
id: integer
username: string
email: string
created_at: datetime(iso 8601)
updated_at: datetime(iso 8601)
}