Skip to content

Commit af2606c

Browse files
author
Dylan-FMK
committed
definition fix
1 parent 9b001c9 commit af2606c

61 files changed

Lines changed: 1742 additions & 226 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,4 +64,5 @@ target/
6464

6565
#Ipython Notebook
6666
.ipynb_checkpoints
67-
config.json
67+
68+
config.json

.openapi-generator/FILES

Lines changed: 7 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -128,6 +128,7 @@ docs/SecureBatchExecuteRequest.md
128128
docs/SecureCancelledTransactionResponse.md
129129
docs/SecureEmbeddedPremiumFinanceApi.md
130130
docs/SecureEmbeddedPremiumFinanceEndorsementsApi.md
131+
docs/SecureEpfQuotesPost200Response.md
131132
docs/SecureMerchantTokenShortResponse.md
132133
docs/SecureOrumApi.md
133134
docs/SecureOutboundPaymentsApi.md
@@ -179,10 +180,12 @@ docs/TransactionDetailResponseSplitsInner.md
179180
docs/TransactionDetailResponseTenderInfo.md
180181
docs/TransactionPaymentResponse.md
181182
docs/TransactionPaymentResponseAchTenderInfo.md
183+
docs/TransactionPaymentResponseAchTenderInfoCommissionType.md
182184
docs/TransactionPaymentResponseBillingContact.md
183185
docs/TransactionPaymentResponseBillingContactAddress.md
184186
docs/TransactionPaymentResponseBillingContactName.md
185187
docs/TransactionPaymentResponseCcTenderInfo.md
188+
docs/TransactionPaymentResponseRefundOrigin.md
186189
docs/TransactionPaymentResponseRefundTransactions.md
187190
docs/TransactionPaymentResponseRefundTransactionsDataInner.md
188191
docs/TransactionPaymentResponseTransactionEntitySplitResponsesInner.md
@@ -348,6 +351,7 @@ openapi_client/models/report_download_request.py
348351
openapi_client/models/row_dto.py
349352
openapi_client/models/secure_batch_execute_request.py
350353
openapi_client/models/secure_cancelled_transaction_response.py
354+
openapi_client/models/secure_epf_quotes_post200_response.py
351355
openapi_client/models/secure_merchant_token_short_response.py
352356
openapi_client/models/secure_payment_batch_details_request.py
353357
openapi_client/models/secure_payment_details_request.py
@@ -386,10 +390,12 @@ openapi_client/models/transaction_detail_response_splits_inner.py
386390
openapi_client/models/transaction_detail_response_tender_info.py
387391
openapi_client/models/transaction_payment_response.py
388392
openapi_client/models/transaction_payment_response_ach_tender_info.py
393+
openapi_client/models/transaction_payment_response_ach_tender_info_commission_type.py
389394
openapi_client/models/transaction_payment_response_billing_contact.py
390395
openapi_client/models/transaction_payment_response_billing_contact_address.py
391396
openapi_client/models/transaction_payment_response_billing_contact_name.py
392397
openapi_client/models/transaction_payment_response_cc_tender_info.py
398+
openapi_client/models/transaction_payment_response_refund_origin.py
393399
openapi_client/models/transaction_payment_response_refund_transactions.py
394400
openapi_client/models/transaction_payment_response_refund_transactions_data_inner.py
395401
openapi_client/models/transaction_payment_response_transaction_entity_split_responses_inner.py
@@ -417,31 +423,5 @@ setup.cfg
417423
setup.py
418424
test-requirements.txt
419425
test/__init__.py
420-
test/test_payment_intent_request_intent.py
421-
test/test_payment_intent_request_pfr.py
422-
test/test_payment_intent_request_splits_inner.py
423-
test/test_payment_link_response_customers_inner_accounts_inner.py
424-
test/test_payment_link_response_display_settings.py
425-
test/test_payment_link_response_display_settings_intent.py
426-
test/test_payment_link_response_payments_inner.py
427-
test/test_payment_link_response_reference_data_list_inner.py
428-
test/test_pf_endorsement_response_item_payment_intent.py
429-
test/test_pf_endorsement_response_item_payment_intent_intent.py
430-
test/test_pf_lite_generate_quote_response.py
431-
test/test_pf_lite_generate_quote_response_item.py
432-
test/test_pf_lite_generate_quote_response_item_e_sign_result.py
433-
test/test_pf_lite_payment_link_request_customers_inner.py
434-
test/test_pf_lite_payment_link_request_customers_inner_address.py
435-
test/test_pf_lite_payment_link_request_reference_data_list_inner.py
436-
test/test_pf_lite_quote_by_payment_link_response_policies_inner.py
437-
test/test_pf_lite_quote_by_payment_link_response_policies_inner_carrier.py
438-
test/test_quote_request_agent_address.py
439-
test/test_quote_request_policies_inner_ga_address.py
440-
test/test_secure_update_payment_link_request_settings_intent.py
441-
test/test_token_link_response.py
442-
test/test_token_link_response_data_inner.py
443-
test/test_token_link_secure_request_intent.py
444-
test/test_transaction_payment_response_refund_transactions.py
445-
test/test_transaction_payment_response_refund_transactions_data_inner.py
446-
test/test_vendor_request_dto_physical_address.py
426+
test/test_transaction_payment_response_refund_origin.py
447427
tox.ini

docs/MerchantTransactionEntityResponseDataInner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ Name | Type | Description | Notes
5858
**adjustment_display_name** | **str** | | [optional]
5959
**adjustment_descriptor_message** | **str** | | [optional]
6060
**payment_adjustment_type** | **str** | | [optional]
61-
**commission_type** | **str** | | [optional]
61+
**commission_type** | [**TransactionPaymentResponseAchTenderInfoCommissionType**](TransactionPaymentResponseAchTenderInfoCommissionType.md) | | [optional]
6262
**commission_value** | **float** | | [optional]
6363
**commission_fixed_value** | **float** | | [optional]
6464
**account_token** | **str** | | [optional]
Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# MerchantTransactionEntityResponseDataInnerCommissionType
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
9+
## Example
10+
11+
```python
12+
from openapi_client.models.merchant_transaction_entity_response_data_inner_commission_type import MerchantTransactionEntityResponseDataInnerCommissionType
13+
14+
# TODO update the JSON string below
15+
json = "{}"
16+
# create an instance of MerchantTransactionEntityResponseDataInnerCommissionType from a JSON string
17+
merchant_transaction_entity_response_data_inner_commission_type_instance = MerchantTransactionEntityResponseDataInnerCommissionType.from_json(json)
18+
# print the JSON string representation of the object
19+
print(MerchantTransactionEntityResponseDataInnerCommissionType.to_json())
20+
21+
# convert the object into a dict
22+
merchant_transaction_entity_response_data_inner_commission_type_dict = merchant_transaction_entity_response_data_inner_commission_type_instance.to_dict()
23+
# create an instance of MerchantTransactionEntityResponseDataInnerCommissionType from a dict
24+
merchant_transaction_entity_response_data_inner_commission_type_from_dict = MerchantTransactionEntityResponseDataInnerCommissionType.from_dict(merchant_transaction_entity_response_data_inner_commission_type_dict)
25+
```
26+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
27+
28+

docs/PFLitePaymentLinkRequest.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Name | Type | Description | Notes
99
**is_pay_in_full** | **bool** | | [optional]
1010
**title** | **str** | |
1111
**payment_description** | **str** | |
12-
**expire_in** | **str** | |
12+
**expire_in** | **int** | |
1313
**expire_in_unit** | **str** | |
1414
**reference_data_list** | [**List[PFLitePaymentLinkRequestReferenceDataListInner]**](PFLitePaymentLinkRequestReferenceDataListInner.md) | |
1515
**callback_parameters** | [**PFLitePaymentLinkRequestCallbackParameters**](PFLitePaymentLinkRequestCallbackParameters.md) | | [optional]

docs/PFLiteSecureQuoteRequestProgram.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
Name | Type | Description | Notes
77
------------ | ------------- | ------------- | -------------
8-
**program_id** | **str** | | [optional]
8+
**program_id** | **float** | | [optional]
99
**loan_type** | **str** | |
1010

1111
## Example

docs/PageVendorResponseDTODataInner.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ Name | Type | Description | Notes
2323
**use_same_as_physical_address** | **bool** | | [optional]
2424
**physical_address** | [**VendorResponseDTORemittanceAddress**](VendorResponseDTORemittanceAddress.md) | | [optional]
2525
**remittance_address** | [**VendorResponseDTORemittanceAddress**](VendorResponseDTORemittanceAddress.md) | | [optional]
26-
**verification_results** | [**VendorResponseDTOVerificationResultsInner**](VendorResponseDTOVerificationResultsInner.md) | | [optional]
26+
**verification_results** | [**List[VendorResponseDTOVerificationResultsInner]**](VendorResponseDTOVerificationResultsInner.md) | | [optional]
2727
**created_by** | **str** | | [optional]
2828
**modified_by** | **str** | | [optional]
2929
**created_on** | **str** | | [optional]
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
# PageVendorResponseDTODataInnerVerificationResults
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**vendor_id** | **str** | | [optional]
9+
**verification_type** | **str** | | [optional]
10+
**verification_status** | **str** | | [optional]
11+
**verification_reason** | **str** | | [optional]
12+
**verified_on** | **str** | | [optional]
13+
14+
## Example
15+
16+
```python
17+
from openapi_client.models.page_vendor_response_dto_data_inner_verification_results import PageVendorResponseDTODataInnerVerificationResults
18+
19+
# TODO update the JSON string below
20+
json = "{}"
21+
# create an instance of PageVendorResponseDTODataInnerVerificationResults from a JSON string
22+
page_vendor_response_dto_data_inner_verification_results_instance = PageVendorResponseDTODataInnerVerificationResults.from_json(json)
23+
# print the JSON string representation of the object
24+
print(PageVendorResponseDTODataInnerVerificationResults.to_json())
25+
26+
# convert the object into a dict
27+
page_vendor_response_dto_data_inner_verification_results_dict = page_vendor_response_dto_data_inner_verification_results_instance.to_dict()
28+
# create an instance of PageVendorResponseDTODataInnerVerificationResults from a dict
29+
page_vendor_response_dto_data_inner_verification_results_from_dict = PageVendorResponseDTODataInnerVerificationResults.from_dict(page_vendor_response_dto_data_inner_verification_results_dict)
30+
```
31+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
32+
33+

docs/SecureEmbeddedPremiumFinanceApi.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ No authorization required
473473
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
474474

475475
# **secure_epf_quotes_post**
476-
> QuoteResponse secure_epf_quotes_post(x_api_key, x_app_key, x_version, origin, get_quote_key_request=get_quote_key_request)
476+
> SecureEpfQuotesPost200Response secure_epf_quotes_post(x_api_key, x_app_key, x_version, origin, get_quote_key_request=get_quote_key_request)
477477
478478
This API will return quote by QuoteKey.
479479

@@ -485,7 +485,7 @@ This API will return quote by QuoteKey.
485485
```python
486486
import openapi_client
487487
from openapi_client.models.get_quote_key_request import GetQuoteKeyRequest
488-
from openapi_client.models.quote_response import QuoteResponse
488+
from openapi_client.models.secure_epf_quotes_post200_response import SecureEpfQuotesPost200Response
489489
from openapi_client.rest import ApiException
490490
from pprint import pprint
491491

@@ -546,7 +546,7 @@ Name | Type | Description | Notes
546546

547547
### Return type
548548

549-
[**QuoteResponse**](QuoteResponse.md)
549+
[**SecureEpfQuotesPost200Response**](SecureEpfQuotesPost200Response.md)
550550

551551
### Authorization
552552

Lines changed: 70 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,70 @@
1+
# SecureEpfQuotesPost200Response
2+
3+
4+
## Properties
5+
6+
Name | Type | Description | Notes
7+
------------ | ------------- | ------------- | -------------
8+
**id** | **str** | The unique identifier for the quote. | [optional]
9+
**quote_key** | **str** | The key associated with the quote. | [optional]
10+
**p_f_type** | **str** | The type of premium finance. | [optional]
11+
**is_endorsement** | **bool** | Indicates if the quote is an endorsement. | [optional]
12+
**merchant_id** | **str** | The ID of the merchant. | [optional]
13+
**program_id** | **float** | The ID of the program. | [optional]
14+
**program_name** | **str** | The name of the program. | [optional]
15+
**payment_intent_id** | **str** | The ID of the payment intent. | [optional]
16+
**account_number** | **str** | The account number. | [optional]
17+
**quote_status** | **str** | The status of the quote. | [optional]
18+
**is_active** | **bool** | Indicates if the quote is active. | [optional] [default to True]
19+
**premium** | **float** | The premium amount. | [optional]
20+
**tax** | **float** | | [optional]
21+
**additional_fees** | **float** | Additional fees associated with the quote. | [optional]
22+
**broker_fee** | **float** | broker fees associated with the quote. | [optional]
23+
**down_amount** | **float** | The down payment amount. | [optional]
24+
**amount_financed** | **float** | The amount financed. | [optional]
25+
**finance_charge** | **float** | The finance charge. | [optional]
26+
**total_payments** | **float** | The total payments. | [optional]
27+
**payment_amount** | **float** | The payment amount. | [optional]
28+
**total_amount** | **float** | Total amount. | [optional]
29+
**doc_stamp** | **float** | The document stamp. | [optional]
30+
**first_due_date** | **str** | The first due date. | [optional]
31+
**apr** | **float** | The annual percentage rate (APR). | [optional]
32+
**installments** | **int** | The number of installments. | [optional]
33+
**batch_id** | **str** | The batch ID. | [optional]
34+
**payments_retained** | **float** | The number of payments retained. | [optional]
35+
**payment_retained_amount** | **float** | The amount retained from the payment. | [optional]
36+
**retail_agent_register_login_url** | **str** | The URL for the retail agent register login. | [optional]
37+
**insured_name** | **str** | The name of the insured. | [optional]
38+
**is_esign_pfa** | **bool** | Indicates if eSign is required for the PFA. | [optional]
39+
**next_payment_due_date** | **str** | The next payment due date. | [optional]
40+
**last_payment_date** | **str** | The last payment date. | [optional]
41+
**is_down_payment_required** | **bool** | Indicates if a down payment is required. | [optional]
42+
**is_esign_required** | **bool** | Indicates if eSign is required. | [optional]
43+
**is_deleted** | **bool** | Indicates if the quote is deleted. | [optional]
44+
**created_on** | **str** | The date when the quote was created. | [optional]
45+
**created_by** | **str** | The user who created the quote. | [optional]
46+
**modified_on** | **str** | The date when the quote was last modified. | [optional]
47+
**modified_by** | **str** | The user who last modified the quote. | [optional]
48+
**un_sign_pfa** | **str** | The unsigned PFA document. | [optional]
49+
**sign_pfa** | **str** | The signed PFA document. | [optional]
50+
51+
## Example
52+
53+
```python
54+
from openapi_client.models.secure_epf_quotes_post200_response import SecureEpfQuotesPost200Response
55+
56+
# TODO update the JSON string below
57+
json = "{}"
58+
# create an instance of SecureEpfQuotesPost200Response from a JSON string
59+
secure_epf_quotes_post200_response_instance = SecureEpfQuotesPost200Response.from_json(json)
60+
# print the JSON string representation of the object
61+
print(SecureEpfQuotesPost200Response.to_json())
62+
63+
# convert the object into a dict
64+
secure_epf_quotes_post200_response_dict = secure_epf_quotes_post200_response_instance.to_dict()
65+
# create an instance of SecureEpfQuotesPost200Response from a dict
66+
secure_epf_quotes_post200_response_from_dict = SecureEpfQuotesPost200Response.from_dict(secure_epf_quotes_post200_response_dict)
67+
```
68+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
69+
70+

0 commit comments

Comments
 (0)