paymentsgate 1.5.1__py3-none-any.whl → 1.5.3__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- paymentsgate/models.py +14 -2
- {paymentsgate-1.5.1.dist-info → paymentsgate-1.5.3.dist-info}/METADATA +1 -1
- {paymentsgate-1.5.1.dist-info → paymentsgate-1.5.3.dist-info}/RECORD +5 -5
- {paymentsgate-1.5.1.dist-info → paymentsgate-1.5.3.dist-info}/LICENSE +0 -0
- {paymentsgate-1.5.1.dist-info → paymentsgate-1.5.3.dist-info}/WHEEL +0 -0
paymentsgate/models.py
CHANGED
|
@@ -267,6 +267,17 @@ class PayOutTlvRequestModel(BaseRequestModel):
|
|
|
267
267
|
class GetQuoteTlv(BaseRequestModel):
|
|
268
268
|
data: str
|
|
269
269
|
|
|
270
|
+
class TLVExtended(BaseResponseModel):
|
|
271
|
+
merchant: str | None = None # MerchantName
|
|
272
|
+
logo: str | None = None # MerchantLogo or merchant MCC logo
|
|
273
|
+
city: str | None = None # Merchant city
|
|
274
|
+
merchantId: str | None = None # uniq merchant id
|
|
275
|
+
zip: str | None = None # merchant address zip code
|
|
276
|
+
qrRefId: str | None = None # uniq QR code reference id
|
|
277
|
+
invoiceId: str | None = None # Merchant invoiceId
|
|
278
|
+
merchantBank: str | None = None # Merchant bank name
|
|
279
|
+
merchantIban: str | None = None # merchant iban
|
|
280
|
+
merchantBankLogo: str | None = None # merchant bank logo
|
|
270
281
|
|
|
271
282
|
class QuoteTlvResponse(BaseResponseModel):
|
|
272
283
|
id: str
|
|
@@ -277,8 +288,9 @@ class QuoteTlvResponse(BaseResponseModel):
|
|
|
277
288
|
feePercent: float # fee percent
|
|
278
289
|
qrVersion: int # qr code version, 1 - nspk, 2 - tlv encoded, 3 - tlv plain
|
|
279
290
|
rate: float # exchange rate
|
|
280
|
-
|
|
281
|
-
|
|
291
|
+
tlv: TLVExtended | None = None
|
|
292
|
+
# merchant: Optional[str] = Field(default=None) # merchant title
|
|
293
|
+
# logo: Optional[str] = Field(default=None) # merchant logo
|
|
282
294
|
|
|
283
295
|
|
|
284
296
|
class PayOutTlvRequest(BaseRequestModel):
|
|
@@ -5,12 +5,12 @@ paymentsgate/enums.py,sha256=bdyq9lmK5O0-PY-QUIpkYVWYhQqDXYpAixlXutYzb88,4223
|
|
|
5
5
|
paymentsgate/exceptions.py,sha256=HtQf0aRF5aKlXUh9uJyxHciJzXYC2zRxz9-HUIl2wDA,1525
|
|
6
6
|
paymentsgate/logger.py,sha256=4Xs2R18au88LRUvF3Ll6xf8ziz4xyq65UU3pcgXPg8g,220
|
|
7
7
|
paymentsgate/mappers.py,sha256=Rr4LM7lAPI1sQgaVirgm2LREvO-7vV4yEUsu6W_ARIw,162
|
|
8
|
-
paymentsgate/models.py,sha256=
|
|
8
|
+
paymentsgate/models.py,sha256=ZLatzz3Mzt5cjjQo7YfnYXl-9MUmlJR9ighmA1BkQRs,9359
|
|
9
9
|
paymentsgate/signature.py,sha256=FCF9GKvVyXQAEpUylt3i3vJKhCWjEHgqfVqyA5l7WPY,2996
|
|
10
10
|
paymentsgate/tokens.py,sha256=ZK_xKj8GWTlXjl-8ZlU216dZdxjFFEKsRp41XR1cUQA,914
|
|
11
11
|
paymentsgate/transport.py,sha256=KA4Ro48s_6PzJ5ZRLf-eygYKjNUJ8OReiBWAVi8rHM8,852
|
|
12
12
|
paymentsgate/types.py,sha256=AoMJ4eFpTAAZ_n4ZeUIJY4hUD_E9tFgoBUqKy18FJ44,130
|
|
13
|
-
paymentsgate-1.5.
|
|
14
|
-
paymentsgate-1.5.
|
|
15
|
-
paymentsgate-1.5.
|
|
16
|
-
paymentsgate-1.5.
|
|
13
|
+
paymentsgate-1.5.3.dist-info/LICENSE,sha256=4xWMZLmqNJ6602DZLEg0A9v03uT4xMq_-XSIxvXvfYM,1075
|
|
14
|
+
paymentsgate-1.5.3.dist-info/WHEEL,sha256=bbU3AyvhQ312rVm7zzRQjs6axI1UYWC3nmFA2E6FFSI,88
|
|
15
|
+
paymentsgate-1.5.3.dist-info/METADATA,sha256=IS8Mtqd4W2bTbAsRL85LawI2F7mrc1rCHiJHtuYeDnU,4055
|
|
16
|
+
paymentsgate-1.5.3.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|