File: _amount.py

package info (click to toggle)
python-stripe 14.4.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 15,576 kB
  • sloc: python: 201,956; makefile: 13; sh: 9
file content (14 lines) | stat: -rw-r--r-- 256 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
# -*- coding: utf-8 -*-
# NOT codegenned
from typing_extensions import TypedDict
from stripe._stripe_object import StripeObject


class Amount(StripeObject):
    value: int
    currency: str


class AmountParam(TypedDict):
    value: int
    currency: str