You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
|**memberGuid**|**String**| The unique id for a `member`. ||
166
168
|**userGuid**|**String**| The unique id for a `user`. ||
169
+
|**includeHoldings**|**Boolean**| When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. |[optional]|
170
+
|**includeTransactions**|**Boolean**| When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. |[optional]|
if ((jsonObj.get("payment_due_at") != null && !jsonObj.get("payment_due_at").isJsonNull()) && !jsonObj.get("payment_due_at").isJsonPrimitive()) {
3671
3671
thrownewIllegalArgumentException(String.format("Expected the field `payment_due_at` to be a primitive type in the JSON string but got `%s`", jsonObj.get("payment_due_at").toString()));
3672
3672
}
3673
-
if ((jsonObj.get("premium_amount") != null && !jsonObj.get("premium_amount").isJsonNull()) && !jsonObj.get("premium_amount").isJsonPrimitive()) {
3674
-
thrownewIllegalArgumentException(String.format("Expected the field `premium_amount` to be a primitive type in the JSON string but got `%s`", jsonObj.get("premium_amount").toString()));
3673
+
if ((jsonObj.get("property_type") != null && !jsonObj.get("property_type").isJsonNull()) && !jsonObj.get("property_type").isJsonPrimitive()) {
3674
+
thrownewIllegalArgumentException(String.format("Expected the field `property_type` to be a primitive type in the JSON string but got `%s`", jsonObj.get("property_type").toString()));
3675
3675
}
3676
3676
if ((jsonObj.get("routing_number") != null && !jsonObj.get("routing_number").isJsonNull()) && !jsonObj.get("routing_number").isJsonPrimitive()) {
3677
3677
thrownewIllegalArgumentException(String.format("Expected the field `routing_number` to be a primitive type in the JSON string but got `%s`", jsonObj.get("routing_number").toString()));
Copy file name to clipboardExpand all lines: src/main/java/com/mx/client/mx_platform_api/MxPlatformApi.java
+25-9Lines changed: 25 additions & 9 deletions
Original file line number
Diff line number
Diff line change
@@ -148,6 +148,8 @@ public void setCustomBaseUrl(String customBaseUrl) {
148
148
* Build call for aggregateMember
149
149
* @param memberGuid The unique id for a `member`. (required)
150
150
* @param userGuid The unique id for a `user`. (required)
151
+
* @param includeHoldings When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. (optional)
152
+
* @param includeTransactions When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. (optional)
151
153
* @param _callback Callback for upload/download progress
152
154
* @return Call to execute
153
155
* @throws ApiException If fail to serialize the request body object
@@ -157,7 +159,7 @@ public void setCustomBaseUrl(String customBaseUrl) {
* Calling this endpoint initiates an aggregation event for the member. This brings in the latest account and transaction data from the connected institution. If this data has recently been updated, MX may not initiate an aggregation event.
225
235
* @param memberGuid The unique id for a `member`. (required)
226
236
* @param userGuid The unique id for a `user`. (required)
237
+
* @param includeHoldings When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. (optional)
238
+
* @param includeTransactions When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. (optional)
227
239
* @return MemberResponseBody
228
240
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
* Calling this endpoint initiates an aggregation event for the member. This brings in the latest account and transaction data from the connected institution. If this data has recently been updated, MX may not initiate an aggregation event.
243
255
* @param memberGuid The unique id for a `member`. (required)
244
256
* @param userGuid The unique id for a `user`. (required)
257
+
* @param includeHoldings When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. (optional)
258
+
* @param includeTransactions When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. (optional)
245
259
* @return ApiResponse<MemberResponseBody>
246
260
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -261,6 +275,8 @@ public ApiResponse<MemberResponseBody> aggregateMemberWithHttpInfo(String member
261
275
* Calling this endpoint initiates an aggregation event for the member. This brings in the latest account and transaction data from the connected institution. If this data has recently been updated, MX may not initiate an aggregation event.
262
276
* @param memberGuid The unique id for a `member`. (required)
263
277
* @param userGuid The unique id for a `user`. (required)
278
+
* @param includeHoldings When set to `false`, the aggregation will not gather holdings data. Defaults to `true`. (optional)
279
+
* @param includeTransactions When set to `false`, the aggregation will not gather transactions data. Defaults to `true`. (optional)
264
280
* @param _callback The callback to be executed when the API call finishes
265
281
* @return The request call
266
282
* @throws ApiException If fail to process the API call, e.g. serializing the request body object
@@ -270,9 +286,9 @@ public ApiResponse<MemberResponseBody> aggregateMemberWithHttpInfo(String member
0 commit comments