Skip to content

Commit 9a581fe

Browse files
author
devexperience
committed
Generated version 0.22.0
This commit was automatically created by a GitHub Action to generate version 0.22.0 of this library.
1 parent 1b329c9 commit 9a581fe

File tree

7 files changed

+18
-18
lines changed

7 files changed

+18
-18
lines changed

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-0.21.0.jar`
27+
- `target/mx-platform-java-0.22.0.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>0.21.0</version>
38+
<version>0.22.0</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```

docs/SpendingPlanApi.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -119,7 +119,7 @@ public class Example {
119119
SpendingPlanApi apiInstance = new SpendingPlanApi(defaultClient);
120120
String spendingPlanGuid = "SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262"; // String | The unique ID for the `spending_plan`.
121121
String userGuid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54"; // String | The unique id for a `user`.
122-
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item to be created with required parameters (planned_amount)
122+
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item to be created with required parameter (planned_amount)
123123
try {
124124
SpendingPlanIterationItemResponse result = apiInstance.createSpendingPlanIterationItem(spendingPlanGuid, userGuid, spendingPlanIterationItemCreateRequestBody);
125125
System.out.println(result);
@@ -140,7 +140,7 @@ public class Example {
140140
|------------- | ------------- | ------------- | -------------|
141141
| **spendingPlanGuid** | **String**| The unique ID for the &#x60;spending_plan&#x60;. | |
142142
| **userGuid** | **String**| The unique id for a &#x60;user&#x60;. | |
143-
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be created with required parameters (planned_amount) | |
143+
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be created with required parameter (planned_amount) | |
144144

145145
### Return type
146146

@@ -999,7 +999,7 @@ public class Example {
999999
String userGuid = "USR-fa7537f3-48aa-a683-a02a-b18940482f54"; // String | The unique id for a `user`.
10001000
String spendingPlanGuid = "SPL-e5f9a5bd-c5b3-4901-bdc0-62119b9db262"; // String | The unique ID for the `spending_plan`.
10011001
String iterationItemGuid = "SII-a4dc1549-da28-1245-9c9c-53eee4cdfbe3"; // String | The unique ID for the `iteration_item`.
1002-
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item object to be updated with required parameter (iteration_item_guid)
1002+
SpendingPlanIterationItemCreateRequestBody spendingPlanIterationItemCreateRequestBody = new SpendingPlanIterationItemCreateRequestBody(); // SpendingPlanIterationItemCreateRequestBody | Iteration item to be updated with required parameter (planned_amount)
10031003
try {
10041004
SpendingPlanIterationItemResponse result = apiInstance.updateSpendingPlanIterationItem(userGuid, spendingPlanGuid, iterationItemGuid, spendingPlanIterationItemCreateRequestBody);
10051005
System.out.println(result);
@@ -1021,7 +1021,7 @@ public class Example {
10211021
| **userGuid** | **String**| The unique id for a &#x60;user&#x60;. | |
10221022
| **spendingPlanGuid** | **String**| The unique ID for the &#x60;spending_plan&#x60;. | |
10231023
| **iterationItemGuid** | **String**| The unique ID for the &#x60;iteration_item&#x60;. | |
1024-
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item object to be updated with required parameter (iteration_item_guid) | |
1024+
| **spendingPlanIterationItemCreateRequestBody** | [**SpendingPlanIterationItemCreateRequestBody**](SpendingPlanIterationItemCreateRequestBody.md)| Iteration item to be updated with required parameter (planned_amount) | |
10251025

10261026
### Return type
10271027

openapi/config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ apiPackage: com.mx.client.mx-platform-api
33
artifactDescription: A Java library for the MX Platform API
44
artifactId: mx-platform-java
55
artifactUrl: https://github.com/mxenabled/mx-platform-java
6-
artifactVersion: 0.21.0
6+
artifactVersion: 0.22.0
77
developerEmail: [email protected]
88
developerName: MX
99
developerOrganization: MX Technologies Inc.

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
<artifactId>mx-platform-java</artifactId>
66
<packaging>jar</packaging>
77
<name>mx-platform-java</name>
8-
<version>0.21.0</version>
8+
<version>0.22.0</version>
99
<url>https://github.com/mxenabled/mx-platform-java</url>
1010
<description>A Java library for the MX Platform API</description>
1111
<scm>

src/main/java/com/mx/client/ApiClient.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ private void init() {
145145
json = new JSON();
146146

147147
// Set default User-Agent.
148-
setUserAgent("OpenAPI-Generator/0.21.0/java");
148+
setUserAgent("OpenAPI-Generator/0.22.0/java");
149149

150150
authentications = new HashMap<String, Authentication>();
151151
}

src/main/java/com/mx/client/Configuration.java

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

1616
@javax.annotation.Generated(value = "org.openapitools.codegen.languages.JavaClientCodegen")
1717
public class Configuration {
18-
public static final String VERSION = "0.21.0";
18+
public static final String VERSION = "0.22.0";
1919

2020
private static ApiClient defaultApiClient = new ApiClient();
2121

src/main/java/com/mx/client/mx_platform_api/SpendingPlanApi.java

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -207,7 +207,7 @@ public okhttp3.Call createSpendingPlanAsync(String userGuid, final ApiCallback<S
207207
* Build call for createSpendingPlanIterationItem
208208
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
209209
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
210-
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
210+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
211211
* @param _callback Callback for upload/download progress
212212
* @return Call to execute
213213
* @throws ApiException If fail to serialize the request body object
@@ -290,7 +290,7 @@ private okhttp3.Call createSpendingPlanIterationItemValidateBeforeCall(String sp
290290
* This endpoint creates a new &#x60;spending_plan_iteration_item&#x60;.
291291
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
292292
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
293-
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
293+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
294294
* @return SpendingPlanIterationItemResponse
295295
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
296296
* @http.response.details
@@ -309,7 +309,7 @@ public SpendingPlanIterationItemResponse createSpendingPlanIterationItem(String
309309
* This endpoint creates a new &#x60;spending_plan_iteration_item&#x60;.
310310
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
311311
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
312-
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
312+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
313313
* @return ApiResponse&lt;SpendingPlanIterationItemResponse&gt;
314314
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
315315
* @http.response.details
@@ -329,7 +329,7 @@ public ApiResponse<SpendingPlanIterationItemResponse> createSpendingPlanIteratio
329329
* This endpoint creates a new &#x60;spending_plan_iteration_item&#x60;.
330330
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
331331
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
332-
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameters (planned_amount) (required)
332+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be created with required parameter (planned_amount) (required)
333333
* @param _callback The callback to be executed when the API call finishes
334334
* @return The request call
335335
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
@@ -1967,7 +1967,7 @@ public okhttp3.Call readSpendingPlanUserAsync(String userGuid, String spendingPl
19671967
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
19681968
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
19691969
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
1970-
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
1970+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
19711971
* @param _callback Callback for upload/download progress
19721972
* @return Call to execute
19731973
* @throws ApiException If fail to serialize the request body object
@@ -2057,7 +2057,7 @@ private okhttp3.Call updateSpendingPlanIterationItemValidateBeforeCall(String us
20572057
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
20582058
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
20592059
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
2060-
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
2060+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
20612061
* @return SpendingPlanIterationItemResponse
20622062
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
20632063
* @http.response.details
@@ -2077,7 +2077,7 @@ public SpendingPlanIterationItemResponse updateSpendingPlanIterationItem(String
20772077
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
20782078
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
20792079
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
2080-
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
2080+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
20812081
* @return ApiResponse&lt;SpendingPlanIterationItemResponse&gt;
20822082
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
20832083
* @http.response.details
@@ -2098,7 +2098,7 @@ public ApiResponse<SpendingPlanIterationItemResponse> updateSpendingPlanIteratio
20982098
* @param userGuid The unique id for a &#x60;user&#x60;. (required)
20992099
* @param spendingPlanGuid The unique ID for the &#x60;spending_plan&#x60;. (required)
21002100
* @param iterationItemGuid The unique ID for the &#x60;iteration_item&#x60;. (required)
2101-
* @param spendingPlanIterationItemCreateRequestBody Iteration item object to be updated with required parameter (iteration_item_guid) (required)
2101+
* @param spendingPlanIterationItemCreateRequestBody Iteration item to be updated with required parameter (planned_amount) (required)
21022102
* @param _callback The callback to be executed when the API call finishes
21032103
* @return The request call
21042104
* @throws ApiException If fail to process the API call, e.g. serializing the request body object

0 commit comments

Comments
 (0)