Skip to content

Commit 98a921e

Browse files
authored
Merge pull request #55 from mxenabled/openapi-generator-1.9.1
Generated version 1.9.1
2 parents aee6147 + dc10b23 commit 98a921e

File tree

590 files changed

+43375
-30418
lines changed

Some content is hidden

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

590 files changed

+43375
-30418
lines changed

.openapi-generator/FILES

Lines changed: 174 additions & 30 deletions
Large diffs are not rendered by default.

docs/ACHResponse.md

Lines changed: 56 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,56 @@
1+
# ACHResponse
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**account_guid** | **str** | | [optional]
8+
**account_number_last_four** | **str** | | [optional]
9+
**account_type** | **str** | | [optional]
10+
**ach_initiated_at** | **str** | | [optional]
11+
**client_guid** | **str** | | [optional]
12+
**corrected_account_number** | **str** | | [optional]
13+
**corrected_routing_number** | **str** | | [optional]
14+
**created_at** | **str** | | [optional]
15+
**guid** | **str** | | [optional]
16+
**id** | **str** | | [optional]
17+
**institution_guid** | **str** | | [optional]
18+
**investigation_notes** | **str** | | [optional]
19+
**member_guid** | **str** | | [optional]
20+
**processing_errors** | **str** | | [optional]
21+
**resolution_code** | **str** | | [optional]
22+
**resolution_detail** | **str** | | [optional]
23+
**resolved_status_at** | **str** | | [optional]
24+
**return_code** | **str** | | [optional]
25+
**return_notes** | **str** | | [optional]
26+
**return_account_number** | **str** | | [optional]
27+
**return_routing_number** | **str** | | [optional]
28+
**return_status** | **str** | | [optional]
29+
**returned_at** | **str** | | [optional]
30+
**sec_code** | **str** | | [optional]
31+
**started_processing_at** | **str** | | [optional]
32+
**submitted_at** | **str** | | [optional]
33+
**transaction_amount** | **float** | | [optional]
34+
**updated_at** | **str** | | [optional]
35+
**user_guid** | **str** | | [optional]
36+
37+
## Example
38+
39+
```python
40+
from mx_platform_python.models.ach_response import ACHResponse
41+
42+
# TODO update the JSON string below
43+
json = "{}"
44+
# create an instance of ACHResponse from a JSON string
45+
ach_response_instance = ACHResponse.from_json(json)
46+
# print the JSON string representation of the object
47+
print ACHResponse.to_json()
48+
49+
# convert the object into a dict
50+
ach_response_dict = ach_response_instance.to_dict()
51+
# create an instance of ACHResponse from a dict
52+
ach_response_form_dict = ach_response.from_dict(ach_response_dict)
53+
```
54+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
55+
56+

docs/ACHReturnCreateRequest.md

Lines changed: 43 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,43 @@
1+
# ACHReturnCreateRequest
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**account_guid** | **str** | The unique identifier for the account associated with the transaction. Defined by MX. |
8+
**account_number_last_four** | **str** | The last 4 digits of the account number used for the transaction by the Originating Depository Financial Institution (ODFI). | [optional]
9+
**ach_initiated_at** | **str** | The date and time when the transaction was initiated by the Originating Depository Financial Institution (ODFI) in ISO 8601 format without timestamp. | [optional]
10+
**corrected_account_number** | **str** | The account number correction reported by the RDFI. Populate only if the `resolution_code` is `NOTICE_OF_CHANGE`. | [optional]
11+
**corrected_routing_number** | **str** | The routing number correction reported by the RDFI. Populate only if the `resolution_code` is `NOTICE_OF_CHANGE`. Must be a valid 9-digit routing number format. | [optional]
12+
**id** | **str** | Client-defined identifier for this specific return submission. Allows you to track and reference you requests. |
13+
**member_guid** | **str** | The unique identifier for the member associated with the transaction. Defined by MX. |
14+
**return_account_number** | **str** | Incorrect account number used in the ACH transaction. | [optional]
15+
**return_code** | **str** | The associated ACH return code and notice of change code (for example, R02, R03, R04, R05, R20, NOC). See [Return Codes](/api-reference/platform-api/reference/ach-return-fields#return-codes) for a complete list. |
16+
**return_notes** | **str** | Notes that you set to inform MX on internal ACH processing. | [optional]
17+
**return_routing_number** | **str** | Incorrect routing number used in the ACH transaction. | [optional]
18+
**returned_at** | **str** | The date and time when the return was reported by the Receiving Financial Depository Institution (RDFI) in ISO 8601 format without timestamp. | [optional]
19+
**sec_code** | **str** | The SEC code (Standard Entry Class Code)–a three-letter code describing how a payment was authorized (for example, `WEB`). See [SEC Codes](/api-reference/platform-api/reference/ach-return-fields#sec-codes) for a complete list. | [optional]
20+
**transaction_amount** | **float** | The amount of the transaction. | [optional]
21+
**transaction_amount_range** | **float** | The transaction amount range, used for impact assessment. | [optional]
22+
**user_guid** | **str** | MX-defined identifier for the user associated with the ACH return. |
23+
24+
## Example
25+
26+
```python
27+
from mx_platform_python.models.ach_return_create_request import ACHReturnCreateRequest
28+
29+
# TODO update the JSON string below
30+
json = "{}"
31+
# create an instance of ACHReturnCreateRequest from a JSON string
32+
ach_return_create_request_instance = ACHReturnCreateRequest.from_json(json)
33+
# print the JSON string representation of the object
34+
print ACHReturnCreateRequest.to_json()
35+
36+
# convert the object into a dict
37+
ach_return_create_request_dict = ach_return_create_request_instance.to_dict()
38+
# create an instance of ACHReturnCreateRequest from a dict
39+
ach_return_create_request_form_dict = ach_return_create_request.from_dict(ach_return_create_request_dict)
40+
```
41+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
42+
43+

docs/ACHReturnCreateRequestBody.md

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

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

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,29 @@
1+
# ACHReturnsResponseBody
2+
3+
4+
## Properties
5+
Name | Type | Description | Notes
6+
------------ | ------------- | ------------- | -------------
7+
**ach_returns** | [**List[ACHResponse]**](ACHResponse.md) | | [optional]
8+
**pagination** | [**PaginationResponse**](PaginationResponse.md) | | [optional]
9+
10+
## Example
11+
12+
```python
13+
from mx_platform_python.models.ach_returns_response_body import ACHReturnsResponseBody
14+
15+
# TODO update the JSON string below
16+
json = "{}"
17+
# create an instance of ACHReturnsResponseBody from a JSON string
18+
ach_returns_response_body_instance = ACHReturnsResponseBody.from_json(json)
19+
# print the JSON string representation of the object
20+
print ACHReturnsResponseBody.to_json()
21+
22+
# convert the object into a dict
23+
ach_returns_response_body_dict = ach_returns_response_body_instance.to_dict()
24+
# create an instance of ACHReturnsResponseBody from a dict
25+
ach_returns_response_body_form_dict = ach_returns_response_body.from_dict(ach_returns_response_body_dict)
26+
```
27+
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
28+
29+

docs/AccountNumberResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,9 @@ Name | Type | Description | Notes
77
**account_guid** | **str** | | [optional]
88
**account_number** | **str** | | [optional]
99
**guid** | **str** | | [optional]
10+
**institution_number** | **str** | | [optional]
1011
**loan_guarantor** | **str** | | [optional]
1112
**loan_reference_number** | **str** | | [optional]
12-
**institution_number** | **str** | | [optional]
1313
**member_guid** | **str** | | [optional]
1414
**passed_validation** | **bool** | | [optional]
1515
**routing_number** | **str** | | [optional]

docs/AccountUpdateRequest.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -4,27 +4,27 @@
44
## Properties
55
Name | Type | Description | Notes
66
------------ | ------------- | ------------- | -------------
7-
**account_subtype** | **str** | | [optional]
8-
**account_type** | **str** | | [optional]
9-
**apr** | **float** | | [optional]
10-
**apy** | **float** | | [optional]
11-
**available_balance** | **float** | | [optional]
12-
**balance** | **float** | | [optional]
13-
**cash_surrender_value** | **float** | | [optional]
14-
**credit_limit** | **float** | | [optional]
15-
**currency_code** | **str** | | [optional]
16-
**death_benefit** | **int** | | [optional]
17-
**interest_rate** | **float** | | [optional]
18-
**is_business** | **bool** | | [optional]
19-
**is_closed** | **bool** | | [optional]
20-
**is_hidden** | **bool** | | [optional]
21-
**loan_amount** | **float** | | [optional]
22-
**metadata** | **str** | | [optional]
23-
**name** | **str** | | [optional]
24-
**nickname** | **str** | | [optional]
25-
**original_balance** | **float** | | [optional]
26-
**property_type** | **str** | | [optional]
27-
**skip_webhook** | **bool** | | [optional]
7+
**account_subtype** | **str** | Can only be updated for manual accounts. | [optional]
8+
**account_type** | **str** | Can only be updated for manual accounts. | [optional]
9+
**apr** | **float** | Can only be updated for manual accounts. | [optional]
10+
**apy** | **float** | Can only be updated for manual accounts. | [optional]
11+
**available_balance** | **float** | Can only be updated for manual accounts. | [optional]
12+
**balance** | **float** | Can only be updated for manual accounts. | [optional]
13+
**cash_surrender_value** | **float** | Can only be updated for manual accounts. | [optional]
14+
**credit_limit** | **float** | Can only be updated for manual accounts. | [optional]
15+
**currency_code** | **str** | Can only be updated for manual accounts. | [optional]
16+
**death_benefit** | **int** | Can only be updated for manual accounts. | [optional]
17+
**interest_rate** | **float** | Can only be updated for manual accounts. | [optional]
18+
**is_business** | **bool** | Can be updated for manual accounts and aggregated accounts. | [optional]
19+
**is_closed** | **bool** | Can only be updated for manual accounts. | [optional]
20+
**is_hidden** | **bool** | Can be updated for manual accounts and aggregated accounts. | [optional]
21+
**loan_amount** | **float** | Can only be updated for manual accounts. | [optional]
22+
**metadata** | **str** | Can only be updated for manual accounts. | [optional]
23+
**name** | **str** | Can only be updated for manual accounts. | [optional]
24+
**nickname** | **str** | Can only be updated for manual accounts. | [optional]
25+
**original_balance** | **float** | Can only be updated for manual accounts. | [optional]
26+
**property_type** | **str** | Can only be updated for manual accounts. | [optional]
27+
**skip_webhook** | **bool** | If set to true, prevents sending an account webhook for the update if that webhook type is enabled for you. | [optional]
2828

2929
## Example
3030

0 commit comments

Comments
 (0)