Skip to content

Commit 6cff5e2

Browse files
authored
Merge pull request #50 from mxenabled/openapi-generator-0.34.0
Generated version 0.34.0
2 parents bac45ee + f7b52cb commit 6cff5e2

29 files changed

Lines changed: 2102 additions & 11 deletions

.openapi-generator/FILES

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,8 @@ docs/ConnectWidgetResponseBody.md
3131
docs/CredentialRequest.md
3232
docs/CredentialResponse.md
3333
docs/CredentialsResponseBody.md
34+
docs/CreditCardProduct.md
35+
docs/CreditCardProductResponse.md
3436
docs/EnhanceTransactionResponse.md
3537
docs/EnhanceTransactionsRequest.md
3638
docs/EnhanceTransactionsRequestBody.md
@@ -84,6 +86,10 @@ docs/PaymentProcessorAuthorizationCodeRequest.md
8486
docs/PaymentProcessorAuthorizationCodeRequestBody.md
8587
docs/PaymentProcessorAuthorizationCodeResponse.md
8688
docs/PaymentProcessorAuthorizationCodeResponseBody.md
89+
docs/RewardResponse.md
90+
docs/RewardResponseBody.md
91+
docs/RewardsResponse.md
92+
docs/RewardsResponseBody.md
8793
docs/ScheduledPaymentResponse.md
8894
docs/ScheduledPaymentsResponseBody.md
8995
docs/SpendingPlanAccountResponse.md
@@ -180,6 +186,8 @@ mx_platform_python/models/connect_widget_response_body.py
180186
mx_platform_python/models/credential_request.py
181187
mx_platform_python/models/credential_response.py
182188
mx_platform_python/models/credentials_response_body.py
189+
mx_platform_python/models/credit_card_product.py
190+
mx_platform_python/models/credit_card_product_response.py
183191
mx_platform_python/models/enhance_transaction_response.py
184192
mx_platform_python/models/enhance_transactions_request.py
185193
mx_platform_python/models/enhance_transactions_request_body.py
@@ -231,6 +239,10 @@ mx_platform_python/models/payment_processor_authorization_code_request.py
231239
mx_platform_python/models/payment_processor_authorization_code_request_body.py
232240
mx_platform_python/models/payment_processor_authorization_code_response.py
233241
mx_platform_python/models/payment_processor_authorization_code_response_body.py
242+
mx_platform_python/models/reward_response.py
243+
mx_platform_python/models/reward_response_body.py
244+
mx_platform_python/models/rewards_response.py
245+
mx_platform_python/models/rewards_response_body.py
234246
mx_platform_python/models/scheduled_payment_response.py
235247
mx_platform_python/models/scheduled_payments_response_body.py
236248
mx_platform_python/models/spending_plan_account_response.py
@@ -324,6 +336,8 @@ test/test_connect_widget_response_body.py
324336
test/test_credential_request.py
325337
test/test_credential_response.py
326338
test/test_credentials_response_body.py
339+
test/test_credit_card_product.py
340+
test/test_credit_card_product_response.py
327341
test/test_enhance_transaction_response.py
328342
test/test_enhance_transactions_request.py
329343
test/test_enhance_transactions_request_body.py
@@ -377,6 +391,10 @@ test/test_payment_processor_authorization_code_request.py
377391
test/test_payment_processor_authorization_code_request_body.py
378392
test/test_payment_processor_authorization_code_response.py
379393
test/test_payment_processor_authorization_code_response_body.py
394+
test/test_reward_response.py
395+
test/test_reward_response_body.py
396+
test/test_rewards_response.py
397+
test/test_rewards_response_body.py
380398
test/test_scheduled_payment_response.py
381399
test/test_scheduled_payments_response_body.py
382400
test/test_spending_plan_account_response.py

docs/CreditCardProduct.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
# CreditCardProduct
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**annual_fee** | **object** | | [optional]
8+
**duration_of_introductory_rate_on_balance_transfer** | **object** | | [optional]
9+
**duration_of_introductory_rate_on_purchases** | **object** | | [optional]
10+
**guid** | **object** | | [optional]
11+
**has_cashback_rewards** | **bool** | | [optional]
12+
**has_other_rewards** | **bool** | | [optional]
13+
**has_travel_rewards** | **bool** | | [optional]
14+
**has_zero_introductory_annual_fee** | **bool** | | [optional]
15+
**has_zero_percent_introductory_rate** | **bool** | | [optional]
16+
**has_zero_percent_introductory_rate_on_balance_transfer** | **bool** | | [optional]
17+
**financial_institution** | **bool** | | [optional]
18+
**is_accepting_applications** | **bool** | | [optional]
19+
**is_small_business_card** | **bool** | | [optional]
20+
**name** | **str** | | [optional]
21+
22+
## Example
23+
24+
```python
25+
from mx_platform_python.models.credit_card_product import CreditCardProduct
26+
27+
# TODO update the JSON string below
28+
json = "{}"
29+
# create an instance of CreditCardProduct from a JSON string
30+
credit_card_product_instance = CreditCardProduct.from_json(json)
31+
# print the JSON string representation of the object
32+
print CreditCardProduct.to_json()
33+
34+
# convert the object into a dict
35+
credit_card_product_dict = credit_card_product_instance.to_dict()
36+
# create an instance of CreditCardProduct from a dict
37+
credit_card_product_form_dict = credit_card_product.from_dict(credit_card_product_dict)
38+
```
39+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
40+
41+

docs/CreditCardProductResponse.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
# CreditCardProductResponse
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**reward** | [**CreditCardProduct**](CreditCardProduct.md) | | [optional]
8+
9+
## Example
10+
11+
```python
12+
from mx_platform_python.models.credit_card_product_response import CreditCardProductResponse
13+
14+
# TODO update the JSON string below
15+
json = "{}"
16+
# create an instance of CreditCardProductResponse from a JSON string
17+
credit_card_product_response_instance = CreditCardProductResponse.from_json(json)
18+
# print the JSON string representation of the object
19+
print CreditCardProductResponse.to_json()
20+
21+
# convert the object into a dict
22+
credit_card_product_response_dict = credit_card_product_response_instance.to_dict()
23+
# create an instance of CreditCardProductResponse from a dict
24+
credit_card_product_response_form_dict = credit_card_product_response.from_dict(credit_card_product_response_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+

0 commit comments

Comments
 (0)