Skip to content

Commit cd15ca1

Browse files
authored
Merge pull request #102 from mxenabled/openapi-generator-1.10.1
Generated version 1.10.1
2 parents ccc7dfc + fdddfc0 commit cd15ca1

File tree

590 files changed

+53850
-30029
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

+53850
-30029
lines changed

.openapi-generator/FILES

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

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ mvn clean package
2424
```
2525

2626
Then manually install the following JARs:
27-
- `target/mx-platform-java-1.10.0.jar`
27+
- `target/mx-platform-java-1.10.1.jar`
2828
- `target/lib/*.jar`
2929

3030
### Maven users
@@ -35,7 +35,7 @@ Add this dependency to your project's POM:
3535
<dependency>
3636
<groupId>com.mx</groupId>
3737
<artifactId>mx-platform-java</artifactId>
38-
<version>1.10.0</version>
38+
<version>1.10.1</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```

docs/ACHResponse.md

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
2+
3+
# ACHResponse
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**accountGuid** | **String** | | [optional] |
11+
|**accountNumberLastFour** | **String** | | [optional] |
12+
|**accountType** | **String** | | [optional] |
13+
|**achInitiatedAt** | **String** | | [optional] |
14+
|**clientGuid** | **String** | | [optional] |
15+
|**correctedAccountNumber** | **String** | | [optional] |
16+
|**correctedRoutingNumber** | **String** | | [optional] |
17+
|**createdAt** | **String** | | [optional] |
18+
|**guid** | **String** | | [optional] |
19+
|**id** | **String** | | [optional] |
20+
|**institutionGuid** | **String** | | [optional] |
21+
|**investigationNotes** | **String** | | [optional] |
22+
|**memberGuid** | **String** | | [optional] |
23+
|**processingErrors** | **String** | | [optional] |
24+
|**resolutionCode** | **String** | | [optional] |
25+
|**resolutionDetail** | **String** | | [optional] |
26+
|**resolvedStatusAt** | **String** | | [optional] |
27+
|**returnCode** | **String** | | [optional] |
28+
|**returnNotes** | **String** | | [optional] |
29+
|**returnAccountNumber** | **String** | | [optional] |
30+
|**returnRoutingNumber** | **String** | | [optional] |
31+
|**returnStatus** | **String** | | [optional] |
32+
|**returnedAt** | **String** | | [optional] |
33+
|**secCode** | **String** | | [optional] |
34+
|**startedProcessingAt** | **String** | | [optional] |
35+
|**submittedAt** | **String** | | [optional] |
36+
|**transactionAmount** | **Double** | | [optional] |
37+
|**updatedAt** | **String** | | [optional] |
38+
|**userGuid** | **String** | | [optional] |
39+
40+
41+

docs/ACHReturnCreateRequest.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
2+
3+
# ACHReturnCreateRequest
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**accountGuid** | **String** | The unique identifier for the account associated with the transaction. Defined by MX. | |
11+
|**accountNumberLastFour** | **String** | The last 4 digits of the account number used for the transaction by the Originating Depository Financial Institution (ODFI). | [optional] |
12+
|**achInitiatedAt** | **String** | The date and time when the transaction was initiated by the Originating Depository Financial Institution (ODFI) in ISO 8601 format without timestamp. | [optional] |
13+
|**correctedAccountNumber** | **String** | The account number correction reported by the RDFI. Populate only if the &#x60;resolution_code&#x60; is &#x60;NOTICE_OF_CHANGE&#x60;. | [optional] |
14+
|**correctedRoutingNumber** | **String** | The routing number correction reported by the RDFI. Populate only if the &#x60;resolution_code&#x60; is &#x60;NOTICE_OF_CHANGE&#x60;. Must be a valid 9-digit routing number format. | [optional] |
15+
|**id** | **String** | Client-defined identifier for this specific return submission. Allows you to track and reference you requests. | |
16+
|**memberGuid** | **String** | The unique identifier for the member associated with the transaction. Defined by MX. | |
17+
|**returnAccountNumber** | **String** | Incorrect account number used in the ACH transaction. | [optional] |
18+
|**returnCode** | **String** | 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. | |
19+
|**returnNotes** | **String** | Notes that you set to inform MX on internal ACH processing. | [optional] |
20+
|**returnRoutingNumber** | **String** | Incorrect routing number used in the ACH transaction. | [optional] |
21+
|**returnedAt** | **String** | The date and time when the return was reported by the Receiving Financial Depository Institution (RDFI) in ISO 8601 format without timestamp. | [optional] |
22+
|**secCode** | **String** | The SEC code (Standard Entry Class Code)–a three-letter code describing how a payment was authorized (for example, &#x60;WEB&#x60;). See [SEC Codes](/api-reference/platform-api/reference/ach-return-fields#sec-codes) for a complete list. | [optional] |
23+
|**transactionAmount** | **BigDecimal** | The amount of the transaction. | [optional] |
24+
|**transactionAmountRange** | **BigDecimal** | The transaction amount range, used for impact assessment. | [optional] |
25+
|**userGuid** | **String** | MX-defined identifier for the user associated with the ACH return. | |
26+
27+
28+

docs/ACHReturnCreateRequestBody.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
2+
3+
# ACHReturnCreateRequestBody
4+
5+
6+
## Properties
7+
8+
| Name | Type | Description | Notes |
9+
|------------ | ------------- | ------------- | -------------|
10+
|**achReturn** | [**ACHReturnCreateRequest**](ACHReturnCreateRequest.md) | | [optional] |
11+
12+
13+
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22

3-
# HoldingResponseBody
3+
# ACHReturnResponseBody
44

55

66
## Properties
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**holding** | [**HoldingResponse**](HoldingResponse.md) | | [optional] |
10+
|**achReturn** | [**ACHResponse**](ACHResponse.md) | | [optional] |
1111

1212

1313

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

22

3-
# HoldingsResponseBody
3+
# ACHReturnsResponseBody
44

55

66
## Properties
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**holdings** | [**List&lt;HoldingResponse&gt;**](HoldingResponse.md) | | [optional] |
10+
|**achReturns** | [**List&lt;ACHResponse&gt;**](ACHResponse.md) | | [optional] |
1111
|**pagination** | [**PaginationResponse**](PaginationResponse.md) | | [optional] |
1212

1313

docs/AccountNumberResponse.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,9 +10,9 @@
1010
|**accountGuid** | **String** | | [optional] |
1111
|**accountNumber** | **String** | | [optional] |
1212
|**guid** | **String** | | [optional] |
13+
|**institutionNumber** | **String** | | [optional] |
1314
|**loanGuarantor** | **String** | | [optional] |
1415
|**loanReferenceNumber** | **String** | | [optional] |
15-
|**institutionNumber** | **String** | | [optional] |
1616
|**memberGuid** | **String** | | [optional] |
1717
|**passedValidation** | **Boolean** | | [optional] |
1818
|**routingNumber** | **String** | | [optional] |

docs/AccountUpdateRequest.md

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -7,27 +7,27 @@
77

88
| Name | Type | Description | Notes |
99
|------------ | ------------- | ------------- | -------------|
10-
|**accountSubtype** | **String** | | [optional] |
11-
|**accountType** | **String** | | [optional] |
12-
|**apr** | **BigDecimal** | | [optional] |
13-
|**apy** | **BigDecimal** | | [optional] |
14-
|**availableBalance** | **BigDecimal** | | [optional] |
15-
|**balance** | **BigDecimal** | | [optional] |
16-
|**cashSurrenderValue** | **BigDecimal** | | [optional] |
17-
|**creditLimit** | **BigDecimal** | | [optional] |
18-
|**currencyCode** | **String** | | [optional] |
19-
|**deathBenefit** | **Integer** | | [optional] |
20-
|**interestRate** | **BigDecimal** | | [optional] |
21-
|**isBusiness** | **Boolean** | | [optional] |
22-
|**isClosed** | **Boolean** | | [optional] |
23-
|**isHidden** | **Boolean** | | [optional] |
24-
|**loanAmount** | **BigDecimal** | | [optional] |
25-
|**metadata** | **String** | | [optional] |
26-
|**name** | **String** | | [optional] |
27-
|**nickname** | **String** | | [optional] |
28-
|**originalBalance** | **BigDecimal** | | [optional] |
29-
|**propertyType** | **String** | | [optional] |
30-
|**skipWebhook** | **Boolean** | | [optional] |
10+
|**accountSubtype** | **String** | Can only be updated for manual accounts. | [optional] |
11+
|**accountType** | **String** | Can only be updated for manual accounts. | [optional] |
12+
|**apr** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
13+
|**apy** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
14+
|**availableBalance** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
15+
|**balance** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
16+
|**cashSurrenderValue** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
17+
|**creditLimit** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
18+
|**currencyCode** | **String** | Can only be updated for manual accounts. | [optional] |
19+
|**deathBenefit** | **Integer** | Can only be updated for manual accounts. | [optional] |
20+
|**interestRate** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
21+
|**isBusiness** | **Boolean** | Can be updated for manual accounts and aggregated accounts. | [optional] |
22+
|**isClosed** | **Boolean** | Can only be updated for manual accounts. | [optional] |
23+
|**isHidden** | **Boolean** | Can be updated for manual accounts and aggregated accounts. | [optional] |
24+
|**loanAmount** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
25+
|**metadata** | **String** | Can only be updated for manual accounts. | [optional] |
26+
|**name** | **String** | Can only be updated for manual accounts. | [optional] |
27+
|**nickname** | **String** | Can only be updated for manual accounts. | [optional] |
28+
|**originalBalance** | **BigDecimal** | Can only be updated for manual accounts. | [optional] |
29+
|**propertyType** | **String** | Can only be updated for manual accounts. | [optional] |
30+
|**skipWebhook** | **Boolean** | If set to true, prevents sending an account webhook for the update if that webhook type is enabled for you. | [optional] |
3131

3232

3333

0 commit comments

Comments
 (0)