We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7fd2e6c commit 280030dCopy full SHA for 280030d
1 file changed
src/blindpay/resources/quotes/quotes.py
@@ -9,6 +9,7 @@
9
CurrencyType,
10
Network,
11
StablecoinToken,
12
+ TransactionDocumentType,
13
)
14
15
@@ -35,6 +36,9 @@ class CreateQuoteInput(TypedDict):
35
36
cover_fees: Optional[bool]
37
description: Optional[str]
38
partner_fee_id: Optional[str]
39
+ transaction_document_file: Optional[str]
40
+ transaction_document_id: Optional[str]
41
+ transaction_document_type: Optional[TransactionDocumentType]
42
43
44
class CreateQuoteResponse(TypedDict):
@@ -54,7 +58,7 @@ class CreateQuoteResponse(TypedDict):
54
58
55
59
class GetFxRateInput(TypedDict):
56
60
currency_type: CurrencyType
57
- from_currency: StablecoinToken # 'from' is reserved in Python
61
+ from_currency: Currency # 'from' is reserved in Python
62
to: Currency
63
request_amount: int
64
0 commit comments