gr4vy 1.5.2__py3-none-any.whl → 1.5.4__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.
- gr4vy/_version.py +3 -3
- gr4vy/all.py +2 -2
- gr4vy/audit_logs.py +2 -2
- gr4vy/balances.py +2 -2
- gr4vy/buyers_gift_cards.py +2 -2
- gr4vy/buyers_payment_methods.py +2 -2
- gr4vy/buyers_sdk.py +10 -10
- gr4vy/buyers_shipping_details.py +10 -10
- gr4vy/card_scheme_definitions_sdk.py +2 -2
- gr4vy/checkout_sessions.py +8 -8
- gr4vy/digital_wallets_sdk.py +10 -10
- gr4vy/domains.py +4 -4
- gr4vy/events.py +2 -2
- gr4vy/executions.py +6 -6
- gr4vy/gift_cards_sdk.py +8 -8
- gr4vy/jobs.py +2 -2
- gr4vy/merchant_accounts_sdk.py +8 -8
- gr4vy/models/dlocalupirecurringinfooptions.py +11 -9
- gr4vy/models/transaction.py +49 -0
- gr4vy/network_tokens_cryptogram.py +2 -2
- gr4vy/payment_links_sdk.py +8 -8
- gr4vy/payment_methods_network_tokens.py +10 -10
- gr4vy/payment_methods_payment_service_tokens.py +6 -6
- gr4vy/payment_methods_sdk.py +8 -8
- gr4vy/payment_options_sdk.py +2 -2
- gr4vy/payment_service_definitions_sdk.py +6 -6
- gr4vy/payment_services_sdk.py +14 -14
- gr4vy/payouts.py +6 -6
- gr4vy/refunds_sdk.py +2 -2
- gr4vy/report_executions_sdk.py +2 -2
- gr4vy/reports_sdk.py +8 -8
- gr4vy/sessions.py +6 -6
- gr4vy/transactions.py +16 -16
- gr4vy/transactions_refunds.py +6 -6
- gr4vy/transactions_settlements.py +4 -4
- {gr4vy-1.5.2.dist-info → gr4vy-1.5.4.dist-info}/METADATA +1 -5
- {gr4vy-1.5.2.dist-info → gr4vy-1.5.4.dist-info}/RECORD +38 -38
- {gr4vy-1.5.2.dist-info → gr4vy-1.5.4.dist-info}/WHEEL +0 -0
gr4vy/merchant_accounts_sdk.py
CHANGED
|
@@ -83,7 +83,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
83
83
|
config=self.sdk_configuration,
|
|
84
84
|
base_url=base_url or "",
|
|
85
85
|
operation_id="list_merchant_accounts",
|
|
86
|
-
oauth2_scopes=
|
|
86
|
+
oauth2_scopes=None,
|
|
87
87
|
security_source=get_security_from_env(
|
|
88
88
|
self.sdk_configuration.security, models.Security
|
|
89
89
|
),
|
|
@@ -251,7 +251,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
251
251
|
config=self.sdk_configuration,
|
|
252
252
|
base_url=base_url or "",
|
|
253
253
|
operation_id="list_merchant_accounts",
|
|
254
|
-
oauth2_scopes=
|
|
254
|
+
oauth2_scopes=None,
|
|
255
255
|
security_source=get_security_from_env(
|
|
256
256
|
self.sdk_configuration.security, models.Security
|
|
257
257
|
),
|
|
@@ -466,7 +466,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
466
466
|
config=self.sdk_configuration,
|
|
467
467
|
base_url=base_url or "",
|
|
468
468
|
operation_id="create_merchant_account",
|
|
469
|
-
oauth2_scopes=
|
|
469
|
+
oauth2_scopes=None,
|
|
470
470
|
security_source=get_security_from_env(
|
|
471
471
|
self.sdk_configuration.security, models.Security
|
|
472
472
|
),
|
|
@@ -660,7 +660,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
660
660
|
config=self.sdk_configuration,
|
|
661
661
|
base_url=base_url or "",
|
|
662
662
|
operation_id="create_merchant_account",
|
|
663
|
-
oauth2_scopes=
|
|
663
|
+
oauth2_scopes=None,
|
|
664
664
|
security_source=get_security_from_env(
|
|
665
665
|
self.sdk_configuration.security, models.Security
|
|
666
666
|
),
|
|
@@ -801,7 +801,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
801
801
|
config=self.sdk_configuration,
|
|
802
802
|
base_url=base_url or "",
|
|
803
803
|
operation_id="get_merchant_account",
|
|
804
|
-
oauth2_scopes=
|
|
804
|
+
oauth2_scopes=None,
|
|
805
805
|
security_source=get_security_from_env(
|
|
806
806
|
self.sdk_configuration.security, models.Security
|
|
807
807
|
),
|
|
@@ -942,7 +942,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
942
942
|
config=self.sdk_configuration,
|
|
943
943
|
base_url=base_url or "",
|
|
944
944
|
operation_id="get_merchant_account",
|
|
945
|
-
oauth2_scopes=
|
|
945
|
+
oauth2_scopes=None,
|
|
946
946
|
security_source=get_security_from_env(
|
|
947
947
|
self.sdk_configuration.security, models.Security
|
|
948
948
|
),
|
|
@@ -1142,7 +1142,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
1142
1142
|
config=self.sdk_configuration,
|
|
1143
1143
|
base_url=base_url or "",
|
|
1144
1144
|
operation_id="update_merchant_account",
|
|
1145
|
-
oauth2_scopes=
|
|
1145
|
+
oauth2_scopes=None,
|
|
1146
1146
|
security_source=get_security_from_env(
|
|
1147
1147
|
self.sdk_configuration.security, models.Security
|
|
1148
1148
|
),
|
|
@@ -1342,7 +1342,7 @@ class MerchantAccountsSDK(BaseSDK):
|
|
|
1342
1342
|
config=self.sdk_configuration,
|
|
1343
1343
|
base_url=base_url or "",
|
|
1344
1344
|
operation_id="update_merchant_account",
|
|
1345
|
-
oauth2_scopes=
|
|
1345
|
+
oauth2_scopes=None,
|
|
1346
1346
|
security_source=get_security_from_env(
|
|
1347
1347
|
self.sdk_configuration.security, models.Security
|
|
1348
1348
|
),
|
|
@@ -10,21 +10,23 @@ from typing_extensions import Annotated, TypedDict
|
|
|
10
10
|
|
|
11
11
|
SubscriptionFrequencyUnit = Union[
|
|
12
12
|
Literal[
|
|
13
|
-
"
|
|
14
|
-
"
|
|
15
|
-
"
|
|
16
|
-
"
|
|
17
|
-
"
|
|
18
|
-
"
|
|
13
|
+
"MONTH",
|
|
14
|
+
"WEEK",
|
|
15
|
+
"BI_MONTHLY",
|
|
16
|
+
"ONDEMAND",
|
|
17
|
+
"QUARTER",
|
|
18
|
+
"YEAR",
|
|
19
|
+
"SEMI_ANNUALLY",
|
|
20
|
+
"DAY",
|
|
19
21
|
],
|
|
20
22
|
UnrecognizedStr,
|
|
21
23
|
]
|
|
22
|
-
r"""Indicates the frequency unit for the subscription. Allowed values are: `
|
|
24
|
+
r"""Indicates the frequency unit for the subscription. Allowed values are: `DAY`, `WEEK`, `MONTH`, `BI_MONTHLY`, `QUARTER`, `SEMI_ANNUALLY`, `YEAR`, `ONDEMAND`."""
|
|
23
25
|
|
|
24
26
|
|
|
25
27
|
class DlocalUPIRecurringInfoOptionsTypedDict(TypedDict):
|
|
26
28
|
subscription_frequency_unit: SubscriptionFrequencyUnit
|
|
27
|
-
r"""Indicates the frequency unit for the subscription. Allowed values are: `
|
|
29
|
+
r"""Indicates the frequency unit for the subscription. Allowed values are: `DAY`, `WEEK`, `MONTH`, `BI_MONTHLY`, `QUARTER`, `SEMI_ANNUALLY`, `YEAR`, `ONDEMAND`."""
|
|
28
30
|
subscription_frequency: int
|
|
29
31
|
r"""Indicates the frequency for the subscription."""
|
|
30
32
|
subscription_start_at: str
|
|
@@ -37,7 +39,7 @@ class DlocalUPIRecurringInfoOptions(BaseModel):
|
|
|
37
39
|
subscription_frequency_unit: Annotated[
|
|
38
40
|
SubscriptionFrequencyUnit, PlainValidator(validate_open_enum(False))
|
|
39
41
|
]
|
|
40
|
-
r"""Indicates the frequency unit for the subscription. Allowed values are: `
|
|
42
|
+
r"""Indicates the frequency unit for the subscription. Allowed values are: `DAY`, `WEEK`, `MONTH`, `BI_MONTHLY`, `QUARTER`, `SEMI_ANNUALLY`, `YEAR`, `ONDEMAND`."""
|
|
41
43
|
|
|
42
44
|
subscription_frequency: int
|
|
43
45
|
r"""Indicates the frequency for the subscription."""
|
gr4vy/models/transaction.py
CHANGED
|
@@ -158,6 +158,20 @@ class TransactionTypedDict(TypedDict):
|
|
|
158
158
|
r"""An optional merchant advice code which provides insight into the type of transaction or reason why the payment failed."""
|
|
159
159
|
installment_count: NotRequired[Nullable[int]]
|
|
160
160
|
r"""The number of installments for this transaction, if applicable."""
|
|
161
|
+
tax_amount: NotRequired[Nullable[int]]
|
|
162
|
+
r"""The sales tax amount for this transaction, represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
|
|
163
|
+
merchant_tax_id: NotRequired[Nullable[str]]
|
|
164
|
+
r"""Merchant tax ID (for example, EIN or VAT number)."""
|
|
165
|
+
customer_reference_number: NotRequired[Nullable[str]]
|
|
166
|
+
r"""Customer code or reference."""
|
|
167
|
+
amount_includes_tax: NotRequired[Nullable[bool]]
|
|
168
|
+
r"""Whether the tax is included in the amount."""
|
|
169
|
+
supplier_order_number: NotRequired[Nullable[str]]
|
|
170
|
+
r"""The merchant's unique identifier for the sales order or invoice."""
|
|
171
|
+
duty_amount: NotRequired[Nullable[int]]
|
|
172
|
+
r"""Total charges for import/export duties."""
|
|
173
|
+
shipping_amount: NotRequired[Nullable[int]]
|
|
174
|
+
r"""Total shipping amount."""
|
|
161
175
|
|
|
162
176
|
|
|
163
177
|
class Transaction(BaseModel):
|
|
@@ -357,6 +371,27 @@ class Transaction(BaseModel):
|
|
|
357
371
|
installment_count: OptionalNullable[int] = UNSET
|
|
358
372
|
r"""The number of installments for this transaction, if applicable."""
|
|
359
373
|
|
|
374
|
+
tax_amount: OptionalNullable[int] = UNSET
|
|
375
|
+
r"""The sales tax amount for this transaction, represented as a monetary amount in the smallest currency unit for the given currency, for example `1299` cents to create an authorization for `$12.99`"""
|
|
376
|
+
|
|
377
|
+
merchant_tax_id: OptionalNullable[str] = UNSET
|
|
378
|
+
r"""Merchant tax ID (for example, EIN or VAT number)."""
|
|
379
|
+
|
|
380
|
+
customer_reference_number: OptionalNullable[str] = UNSET
|
|
381
|
+
r"""Customer code or reference."""
|
|
382
|
+
|
|
383
|
+
amount_includes_tax: OptionalNullable[bool] = UNSET
|
|
384
|
+
r"""Whether the tax is included in the amount."""
|
|
385
|
+
|
|
386
|
+
supplier_order_number: OptionalNullable[str] = UNSET
|
|
387
|
+
r"""The merchant's unique identifier for the sales order or invoice."""
|
|
388
|
+
|
|
389
|
+
duty_amount: OptionalNullable[int] = UNSET
|
|
390
|
+
r"""Total charges for import/export duties."""
|
|
391
|
+
|
|
392
|
+
shipping_amount: OptionalNullable[int] = UNSET
|
|
393
|
+
r"""Total shipping amount."""
|
|
394
|
+
|
|
360
395
|
@model_serializer(mode="wrap")
|
|
361
396
|
def serialize_model(self, handler):
|
|
362
397
|
optional_fields = [
|
|
@@ -397,6 +432,13 @@ class Transaction(BaseModel):
|
|
|
397
432
|
"recipient",
|
|
398
433
|
"merchant_advice_code",
|
|
399
434
|
"installment_count",
|
|
435
|
+
"tax_amount",
|
|
436
|
+
"merchant_tax_id",
|
|
437
|
+
"customer_reference_number",
|
|
438
|
+
"amount_includes_tax",
|
|
439
|
+
"supplier_order_number",
|
|
440
|
+
"duty_amount",
|
|
441
|
+
"shipping_amount",
|
|
400
442
|
]
|
|
401
443
|
nullable_fields = [
|
|
402
444
|
"settled_currency",
|
|
@@ -433,6 +475,13 @@ class Transaction(BaseModel):
|
|
|
433
475
|
"recipient",
|
|
434
476
|
"merchant_advice_code",
|
|
435
477
|
"installment_count",
|
|
478
|
+
"tax_amount",
|
|
479
|
+
"merchant_tax_id",
|
|
480
|
+
"customer_reference_number",
|
|
481
|
+
"amount_includes_tax",
|
|
482
|
+
"supplier_order_number",
|
|
483
|
+
"duty_amount",
|
|
484
|
+
"shipping_amount",
|
|
436
485
|
]
|
|
437
486
|
null_default_fields = []
|
|
438
487
|
|
|
@@ -89,7 +89,7 @@ class NetworkTokensCryptogram(BaseSDK):
|
|
|
89
89
|
config=self.sdk_configuration,
|
|
90
90
|
base_url=base_url or "",
|
|
91
91
|
operation_id="create_payment_method_network_token_cryptogram",
|
|
92
|
-
oauth2_scopes=
|
|
92
|
+
oauth2_scopes=None,
|
|
93
93
|
security_source=get_security_from_env(
|
|
94
94
|
self.sdk_configuration.security, models.Security
|
|
95
95
|
),
|
|
@@ -243,7 +243,7 @@ class NetworkTokensCryptogram(BaseSDK):
|
|
|
243
243
|
config=self.sdk_configuration,
|
|
244
244
|
base_url=base_url or "",
|
|
245
245
|
operation_id="create_payment_method_network_token_cryptogram",
|
|
246
|
-
oauth2_scopes=
|
|
246
|
+
oauth2_scopes=None,
|
|
247
247
|
security_source=get_security_from_env(
|
|
248
248
|
self.sdk_configuration.security, models.Security
|
|
249
249
|
),
|
gr4vy/payment_links_sdk.py
CHANGED
|
@@ -169,7 +169,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
169
169
|
config=self.sdk_configuration,
|
|
170
170
|
base_url=base_url or "",
|
|
171
171
|
operation_id="add_payment_link",
|
|
172
|
-
oauth2_scopes=
|
|
172
|
+
oauth2_scopes=None,
|
|
173
173
|
security_source=get_security_from_env(
|
|
174
174
|
self.sdk_configuration.security, models.Security
|
|
175
175
|
),
|
|
@@ -401,7 +401,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
401
401
|
config=self.sdk_configuration,
|
|
402
402
|
base_url=base_url or "",
|
|
403
403
|
operation_id="add_payment_link",
|
|
404
|
-
oauth2_scopes=
|
|
404
|
+
oauth2_scopes=None,
|
|
405
405
|
security_source=get_security_from_env(
|
|
406
406
|
self.sdk_configuration.security, models.Security
|
|
407
407
|
),
|
|
@@ -554,7 +554,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
554
554
|
config=self.sdk_configuration,
|
|
555
555
|
base_url=base_url or "",
|
|
556
556
|
operation_id="list_payment_links",
|
|
557
|
-
oauth2_scopes=
|
|
557
|
+
oauth2_scopes=None,
|
|
558
558
|
security_source=get_security_from_env(
|
|
559
559
|
self.sdk_configuration.security, models.Security
|
|
560
560
|
),
|
|
@@ -729,7 +729,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
729
729
|
config=self.sdk_configuration,
|
|
730
730
|
base_url=base_url or "",
|
|
731
731
|
operation_id="list_payment_links",
|
|
732
|
-
oauth2_scopes=
|
|
732
|
+
oauth2_scopes=None,
|
|
733
733
|
security_source=get_security_from_env(
|
|
734
734
|
self.sdk_configuration.security, models.Security
|
|
735
735
|
),
|
|
@@ -894,7 +894,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
894
894
|
config=self.sdk_configuration,
|
|
895
895
|
base_url=base_url or "",
|
|
896
896
|
operation_id="expire_payment_link",
|
|
897
|
-
oauth2_scopes=
|
|
897
|
+
oauth2_scopes=None,
|
|
898
898
|
security_source=get_security_from_env(
|
|
899
899
|
self.sdk_configuration.security, models.Security
|
|
900
900
|
),
|
|
@@ -1037,7 +1037,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
1037
1037
|
config=self.sdk_configuration,
|
|
1038
1038
|
base_url=base_url or "",
|
|
1039
1039
|
operation_id="expire_payment_link",
|
|
1040
|
-
oauth2_scopes=
|
|
1040
|
+
oauth2_scopes=None,
|
|
1041
1041
|
security_source=get_security_from_env(
|
|
1042
1042
|
self.sdk_configuration.security, models.Security
|
|
1043
1043
|
),
|
|
@@ -1184,7 +1184,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
1184
1184
|
config=self.sdk_configuration,
|
|
1185
1185
|
base_url=base_url or "",
|
|
1186
1186
|
operation_id="get_payment_link",
|
|
1187
|
-
oauth2_scopes=
|
|
1187
|
+
oauth2_scopes=None,
|
|
1188
1188
|
security_source=get_security_from_env(
|
|
1189
1189
|
self.sdk_configuration.security, models.Security
|
|
1190
1190
|
),
|
|
@@ -1331,7 +1331,7 @@ class PaymentLinksSDK(BaseSDK):
|
|
|
1331
1331
|
config=self.sdk_configuration,
|
|
1332
1332
|
base_url=base_url or "",
|
|
1333
1333
|
operation_id="get_payment_link",
|
|
1334
|
-
oauth2_scopes=
|
|
1334
|
+
oauth2_scopes=None,
|
|
1335
1335
|
security_source=get_security_from_env(
|
|
1336
1336
|
self.sdk_configuration.security, models.Security
|
|
1337
1337
|
),
|
|
@@ -98,7 +98,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
98
98
|
config=self.sdk_configuration,
|
|
99
99
|
base_url=base_url or "",
|
|
100
100
|
operation_id="list_payment_method_network_tokens",
|
|
101
|
-
oauth2_scopes=
|
|
101
|
+
oauth2_scopes=None,
|
|
102
102
|
security_source=get_security_from_env(
|
|
103
103
|
self.sdk_configuration.security, models.Security
|
|
104
104
|
),
|
|
@@ -245,7 +245,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
245
245
|
config=self.sdk_configuration,
|
|
246
246
|
base_url=base_url or "",
|
|
247
247
|
operation_id="list_payment_method_network_tokens",
|
|
248
|
-
oauth2_scopes=
|
|
248
|
+
oauth2_scopes=None,
|
|
249
249
|
security_source=get_security_from_env(
|
|
250
250
|
self.sdk_configuration.security, models.Security
|
|
251
251
|
),
|
|
@@ -406,7 +406,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
406
406
|
config=self.sdk_configuration,
|
|
407
407
|
base_url=base_url or "",
|
|
408
408
|
operation_id="create_payment_method_network_token",
|
|
409
|
-
oauth2_scopes=
|
|
409
|
+
oauth2_scopes=None,
|
|
410
410
|
security_source=get_security_from_env(
|
|
411
411
|
self.sdk_configuration.security, models.Security
|
|
412
412
|
),
|
|
@@ -567,7 +567,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
567
567
|
config=self.sdk_configuration,
|
|
568
568
|
base_url=base_url or "",
|
|
569
569
|
operation_id="create_payment_method_network_token",
|
|
570
|
-
oauth2_scopes=
|
|
570
|
+
oauth2_scopes=None,
|
|
571
571
|
security_source=get_security_from_env(
|
|
572
572
|
self.sdk_configuration.security, models.Security
|
|
573
573
|
),
|
|
@@ -713,7 +713,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
713
713
|
config=self.sdk_configuration,
|
|
714
714
|
base_url=base_url or "",
|
|
715
715
|
operation_id="suspend_payment_method_network_token",
|
|
716
|
-
oauth2_scopes=
|
|
716
|
+
oauth2_scopes=None,
|
|
717
717
|
security_source=get_security_from_env(
|
|
718
718
|
self.sdk_configuration.security, models.Security
|
|
719
719
|
),
|
|
@@ -859,7 +859,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
859
859
|
config=self.sdk_configuration,
|
|
860
860
|
base_url=base_url or "",
|
|
861
861
|
operation_id="suspend_payment_method_network_token",
|
|
862
|
-
oauth2_scopes=
|
|
862
|
+
oauth2_scopes=None,
|
|
863
863
|
security_source=get_security_from_env(
|
|
864
864
|
self.sdk_configuration.security, models.Security
|
|
865
865
|
),
|
|
@@ -1005,7 +1005,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
1005
1005
|
config=self.sdk_configuration,
|
|
1006
1006
|
base_url=base_url or "",
|
|
1007
1007
|
operation_id="resume_payment_method_network_token",
|
|
1008
|
-
oauth2_scopes=
|
|
1008
|
+
oauth2_scopes=None,
|
|
1009
1009
|
security_source=get_security_from_env(
|
|
1010
1010
|
self.sdk_configuration.security, models.Security
|
|
1011
1011
|
),
|
|
@@ -1151,7 +1151,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
1151
1151
|
config=self.sdk_configuration,
|
|
1152
1152
|
base_url=base_url or "",
|
|
1153
1153
|
operation_id="resume_payment_method_network_token",
|
|
1154
|
-
oauth2_scopes=
|
|
1154
|
+
oauth2_scopes=None,
|
|
1155
1155
|
security_source=get_security_from_env(
|
|
1156
1156
|
self.sdk_configuration.security, models.Security
|
|
1157
1157
|
),
|
|
@@ -1297,7 +1297,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
1297
1297
|
config=self.sdk_configuration,
|
|
1298
1298
|
base_url=base_url or "",
|
|
1299
1299
|
operation_id="delete_payment_method_network_token",
|
|
1300
|
-
oauth2_scopes=
|
|
1300
|
+
oauth2_scopes=None,
|
|
1301
1301
|
security_source=get_security_from_env(
|
|
1302
1302
|
self.sdk_configuration.security, models.Security
|
|
1303
1303
|
),
|
|
@@ -1443,7 +1443,7 @@ class PaymentMethodsNetworkTokens(BaseSDK):
|
|
|
1443
1443
|
config=self.sdk_configuration,
|
|
1444
1444
|
base_url=base_url or "",
|
|
1445
1445
|
operation_id="delete_payment_method_network_token",
|
|
1446
|
-
oauth2_scopes=
|
|
1446
|
+
oauth2_scopes=None,
|
|
1447
1447
|
security_source=get_security_from_env(
|
|
1448
1448
|
self.sdk_configuration.security, models.Security
|
|
1449
1449
|
),
|
|
@@ -85,7 +85,7 @@ class PaymentMethodsPaymentServiceTokens(BaseSDK):
|
|
|
85
85
|
config=self.sdk_configuration,
|
|
86
86
|
base_url=base_url or "",
|
|
87
87
|
operation_id="list_payment_method_payment_service_tokens",
|
|
88
|
-
oauth2_scopes=
|
|
88
|
+
oauth2_scopes=None,
|
|
89
89
|
security_source=get_security_from_env(
|
|
90
90
|
self.sdk_configuration.security, models.Security
|
|
91
91
|
),
|
|
@@ -235,7 +235,7 @@ class PaymentMethodsPaymentServiceTokens(BaseSDK):
|
|
|
235
235
|
config=self.sdk_configuration,
|
|
236
236
|
base_url=base_url or "",
|
|
237
237
|
operation_id="list_payment_method_payment_service_tokens",
|
|
238
|
-
oauth2_scopes=
|
|
238
|
+
oauth2_scopes=None,
|
|
239
239
|
security_source=get_security_from_env(
|
|
240
240
|
self.sdk_configuration.security, models.Security
|
|
241
241
|
),
|
|
@@ -396,7 +396,7 @@ class PaymentMethodsPaymentServiceTokens(BaseSDK):
|
|
|
396
396
|
config=self.sdk_configuration,
|
|
397
397
|
base_url=base_url or "",
|
|
398
398
|
operation_id="create_payment_method_payment_service_token",
|
|
399
|
-
oauth2_scopes=
|
|
399
|
+
oauth2_scopes=None,
|
|
400
400
|
security_source=get_security_from_env(
|
|
401
401
|
self.sdk_configuration.security, models.Security
|
|
402
402
|
),
|
|
@@ -557,7 +557,7 @@ class PaymentMethodsPaymentServiceTokens(BaseSDK):
|
|
|
557
557
|
config=self.sdk_configuration,
|
|
558
558
|
base_url=base_url or "",
|
|
559
559
|
operation_id="create_payment_method_payment_service_token",
|
|
560
|
-
oauth2_scopes=
|
|
560
|
+
oauth2_scopes=None,
|
|
561
561
|
security_source=get_security_from_env(
|
|
562
562
|
self.sdk_configuration.security, models.Security
|
|
563
563
|
),
|
|
@@ -703,7 +703,7 @@ class PaymentMethodsPaymentServiceTokens(BaseSDK):
|
|
|
703
703
|
config=self.sdk_configuration,
|
|
704
704
|
base_url=base_url or "",
|
|
705
705
|
operation_id="delete_payment_method_payment_service_token",
|
|
706
|
-
oauth2_scopes=
|
|
706
|
+
oauth2_scopes=None,
|
|
707
707
|
security_source=get_security_from_env(
|
|
708
708
|
self.sdk_configuration.security, models.Security
|
|
709
709
|
),
|
|
@@ -849,7 +849,7 @@ class PaymentMethodsPaymentServiceTokens(BaseSDK):
|
|
|
849
849
|
config=self.sdk_configuration,
|
|
850
850
|
base_url=base_url or "",
|
|
851
851
|
operation_id="delete_payment_method_payment_service_token",
|
|
852
|
-
oauth2_scopes=
|
|
852
|
+
oauth2_scopes=None,
|
|
853
853
|
security_source=get_security_from_env(
|
|
854
854
|
self.sdk_configuration.security, models.Security
|
|
855
855
|
),
|
gr4vy/payment_methods_sdk.py
CHANGED
|
@@ -121,7 +121,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
121
121
|
config=self.sdk_configuration,
|
|
122
122
|
base_url=base_url or "",
|
|
123
123
|
operation_id="list_payment_methods",
|
|
124
|
-
oauth2_scopes=
|
|
124
|
+
oauth2_scopes=None,
|
|
125
125
|
security_source=get_security_from_env(
|
|
126
126
|
self.sdk_configuration.security, models.Security
|
|
127
127
|
),
|
|
@@ -308,7 +308,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
308
308
|
config=self.sdk_configuration,
|
|
309
309
|
base_url=base_url or "",
|
|
310
310
|
operation_id="list_payment_methods",
|
|
311
|
-
oauth2_scopes=
|
|
311
|
+
oauth2_scopes=None,
|
|
312
312
|
security_source=get_security_from_env(
|
|
313
313
|
self.sdk_configuration.security, models.Security
|
|
314
314
|
),
|
|
@@ -479,7 +479,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
479
479
|
config=self.sdk_configuration,
|
|
480
480
|
base_url=base_url or "",
|
|
481
481
|
operation_id="create_payment_method",
|
|
482
|
-
oauth2_scopes=
|
|
482
|
+
oauth2_scopes=None,
|
|
483
483
|
security_source=get_security_from_env(
|
|
484
484
|
self.sdk_configuration.security, models.Security
|
|
485
485
|
),
|
|
@@ -625,7 +625,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
625
625
|
config=self.sdk_configuration,
|
|
626
626
|
base_url=base_url or "",
|
|
627
627
|
operation_id="create_payment_method",
|
|
628
|
-
oauth2_scopes=
|
|
628
|
+
oauth2_scopes=None,
|
|
629
629
|
security_source=get_security_from_env(
|
|
630
630
|
self.sdk_configuration.security, models.Security
|
|
631
631
|
),
|
|
@@ -772,7 +772,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
772
772
|
config=self.sdk_configuration,
|
|
773
773
|
base_url=base_url or "",
|
|
774
774
|
operation_id="get_payment_method",
|
|
775
|
-
oauth2_scopes=
|
|
775
|
+
oauth2_scopes=None,
|
|
776
776
|
security_source=get_security_from_env(
|
|
777
777
|
self.sdk_configuration.security, models.Security
|
|
778
778
|
),
|
|
@@ -919,7 +919,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
919
919
|
config=self.sdk_configuration,
|
|
920
920
|
base_url=base_url or "",
|
|
921
921
|
operation_id="get_payment_method",
|
|
922
|
-
oauth2_scopes=
|
|
922
|
+
oauth2_scopes=None,
|
|
923
923
|
security_source=get_security_from_env(
|
|
924
924
|
self.sdk_configuration.security, models.Security
|
|
925
925
|
),
|
|
@@ -1062,7 +1062,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
1062
1062
|
config=self.sdk_configuration,
|
|
1063
1063
|
base_url=base_url or "",
|
|
1064
1064
|
operation_id="delete_payment_method",
|
|
1065
|
-
oauth2_scopes=
|
|
1065
|
+
oauth2_scopes=None,
|
|
1066
1066
|
security_source=get_security_from_env(
|
|
1067
1067
|
self.sdk_configuration.security, models.Security
|
|
1068
1068
|
),
|
|
@@ -1205,7 +1205,7 @@ class PaymentMethodsSDK(BaseSDK):
|
|
|
1205
1205
|
config=self.sdk_configuration,
|
|
1206
1206
|
base_url=base_url or "",
|
|
1207
1207
|
operation_id="delete_payment_method",
|
|
1208
|
-
oauth2_scopes=
|
|
1208
|
+
oauth2_scopes=None,
|
|
1209
1209
|
security_source=get_security_from_env(
|
|
1210
1210
|
self.sdk_configuration.security, models.Security
|
|
1211
1211
|
),
|
gr4vy/payment_options_sdk.py
CHANGED
|
@@ -106,7 +106,7 @@ class PaymentOptionsSDK(BaseSDK):
|
|
|
106
106
|
config=self.sdk_configuration,
|
|
107
107
|
base_url=base_url or "",
|
|
108
108
|
operation_id="list_payment_options",
|
|
109
|
-
oauth2_scopes=
|
|
109
|
+
oauth2_scopes=None,
|
|
110
110
|
security_source=get_security_from_env(
|
|
111
111
|
self.sdk_configuration.security, models.Security
|
|
112
112
|
),
|
|
@@ -277,7 +277,7 @@ class PaymentOptionsSDK(BaseSDK):
|
|
|
277
277
|
config=self.sdk_configuration,
|
|
278
278
|
base_url=base_url or "",
|
|
279
279
|
operation_id="list_payment_options",
|
|
280
|
-
oauth2_scopes=
|
|
280
|
+
oauth2_scopes=None,
|
|
281
281
|
security_source=get_security_from_env(
|
|
282
282
|
self.sdk_configuration.security, models.Security
|
|
283
283
|
),
|
|
@@ -80,7 +80,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
|
|
|
80
80
|
config=self.sdk_configuration,
|
|
81
81
|
base_url=base_url or "",
|
|
82
82
|
operation_id="list_payment_service_definitions",
|
|
83
|
-
oauth2_scopes=
|
|
83
|
+
oauth2_scopes=None,
|
|
84
84
|
security_source=get_security_from_env(
|
|
85
85
|
self.sdk_configuration.security, models.Security
|
|
86
86
|
),
|
|
@@ -246,7 +246,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
|
|
|
246
246
|
config=self.sdk_configuration,
|
|
247
247
|
base_url=base_url or "",
|
|
248
248
|
operation_id="list_payment_service_definitions",
|
|
249
|
-
oauth2_scopes=
|
|
249
|
+
oauth2_scopes=None,
|
|
250
250
|
security_source=get_security_from_env(
|
|
251
251
|
self.sdk_configuration.security, models.Security
|
|
252
252
|
),
|
|
@@ -409,7 +409,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
|
|
|
409
409
|
config=self.sdk_configuration,
|
|
410
410
|
base_url=base_url or "",
|
|
411
411
|
operation_id="get_payment_service_definition",
|
|
412
|
-
oauth2_scopes=
|
|
412
|
+
oauth2_scopes=None,
|
|
413
413
|
security_source=get_security_from_env(
|
|
414
414
|
self.sdk_configuration.security, models.Security
|
|
415
415
|
),
|
|
@@ -550,7 +550,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
|
|
|
550
550
|
config=self.sdk_configuration,
|
|
551
551
|
base_url=base_url or "",
|
|
552
552
|
operation_id="get_payment_service_definition",
|
|
553
|
-
oauth2_scopes=
|
|
553
|
+
oauth2_scopes=None,
|
|
554
554
|
security_source=get_security_from_env(
|
|
555
555
|
self.sdk_configuration.security, models.Security
|
|
556
556
|
),
|
|
@@ -693,7 +693,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
|
|
|
693
693
|
config=self.sdk_configuration,
|
|
694
694
|
base_url=base_url or "",
|
|
695
695
|
operation_id="create_payment_service_definition_session",
|
|
696
|
-
oauth2_scopes=
|
|
696
|
+
oauth2_scopes=None,
|
|
697
697
|
security_source=get_security_from_env(
|
|
698
698
|
self.sdk_configuration.security, models.Security
|
|
699
699
|
),
|
|
@@ -836,7 +836,7 @@ class PaymentServiceDefinitionsSDK(BaseSDK):
|
|
|
836
836
|
config=self.sdk_configuration,
|
|
837
837
|
base_url=base_url or "",
|
|
838
838
|
operation_id="create_payment_service_definition_session",
|
|
839
|
-
oauth2_scopes=
|
|
839
|
+
oauth2_scopes=None,
|
|
840
840
|
security_source=get_security_from_env(
|
|
841
841
|
self.sdk_configuration.security, models.Security
|
|
842
842
|
),
|