Skip to content

Commit e625af2

Browse files
author
devexperience
committed
Generated version 0.25.0
This commit was automatically created by a GitHub Action to generate version 0.25.0 of this library.
1 parent b95cfcb commit e625af2

8 files changed

Lines changed: 47 additions & 7 deletions

File tree

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

docs/WidgetRequest.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,7 @@
1616
|**disableInstitutionSearch** | **Boolean** | | [optional] |
1717
|**includeIdentity** | **Boolean** | | [optional] |
1818
|**includeTransactions** | **Boolean** | | [optional] |
19+
|**insightGuid** | **String** | | [optional] |
1920
|**isMobileWebview** | **Boolean** | | [optional] |
2021
|**microwidgetInstanceId** | **String** | | [optional] |
2122
|**mode** | **String** | | [optional] |

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.24.0
6+
artifactVersion: 0.25.0
77
developerEmail: devexperience@mx.com
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.24.0</version>
8+
<version>0.25.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.24.0/java");
148+
setUserAgent("OpenAPI-Generator/0.25.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.24.0";
18+
public static final String VERSION = "0.25.0";
1919

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

src/main/java/com/mx/client/model/WidgetRequest.java

Lines changed: 32 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,6 +87,10 @@ public class WidgetRequest {
8787
@SerializedName(SERIALIZED_NAME_INCLUDE_TRANSACTIONS)
8888
private Boolean includeTransactions;
8989

90+
public static final String SERIALIZED_NAME_INSIGHT_GUID = "insight_guid";
91+
@SerializedName(SERIALIZED_NAME_INSIGHT_GUID)
92+
private String insightGuid;
93+
9094
public static final String SERIALIZED_NAME_IS_MOBILE_WEBVIEW = "is_mobile_webview";
9195
@SerializedName(SERIALIZED_NAME_IS_MOBILE_WEBVIEW)
9296
private Boolean isMobileWebview;
@@ -311,6 +315,27 @@ public void setIncludeTransactions(Boolean includeTransactions) {
311315
}
312316

313317

318+
public WidgetRequest insightGuid(String insightGuid) {
319+
320+
this.insightGuid = insightGuid;
321+
return this;
322+
}
323+
324+
/**
325+
* Get insightGuid
326+
* @return insightGuid
327+
**/
328+
@javax.annotation.Nullable
329+
public String getInsightGuid() {
330+
return insightGuid;
331+
}
332+
333+
334+
public void setInsightGuid(String insightGuid) {
335+
this.insightGuid = insightGuid;
336+
}
337+
338+
314339
public WidgetRequest isMobileWebview(Boolean isMobileWebview) {
315340

316341
this.isMobileWebview = isMobileWebview;
@@ -498,6 +523,7 @@ public boolean equals(Object o) {
498523
Objects.equals(this.disableInstitutionSearch, widgetRequest.disableInstitutionSearch) &&
499524
Objects.equals(this.includeIdentity, widgetRequest.includeIdentity) &&
500525
Objects.equals(this.includeTransactions, widgetRequest.includeTransactions) &&
526+
Objects.equals(this.insightGuid, widgetRequest.insightGuid) &&
501527
Objects.equals(this.isMobileWebview, widgetRequest.isMobileWebview) &&
502528
Objects.equals(this.microwidgetInstanceId, widgetRequest.microwidgetInstanceId) &&
503529
Objects.equals(this.mode, widgetRequest.mode) &&
@@ -510,7 +536,7 @@ public boolean equals(Object o) {
510536

511537
@Override
512538
public int hashCode() {
513-
return Objects.hash(clientRedirectUrl, colorScheme, currentInstitutionCode, currentInstitutionGuid, currentMemberGuid, disableBackgroundAgg, disableInstitutionSearch, includeIdentity, includeTransactions, isMobileWebview, microwidgetInstanceId, mode, oauthReferralSource, uiMessageVersion, uiMessageWebviewUrlScheme, updateCredentials, widgetType);
539+
return Objects.hash(clientRedirectUrl, colorScheme, currentInstitutionCode, currentInstitutionGuid, currentMemberGuid, disableBackgroundAgg, disableInstitutionSearch, includeIdentity, includeTransactions, insightGuid, isMobileWebview, microwidgetInstanceId, mode, oauthReferralSource, uiMessageVersion, uiMessageWebviewUrlScheme, updateCredentials, widgetType);
514540
}
515541

516542
@Override
@@ -526,6 +552,7 @@ public String toString() {
526552
sb.append(" disableInstitutionSearch: ").append(toIndentedString(disableInstitutionSearch)).append("\n");
527553
sb.append(" includeIdentity: ").append(toIndentedString(includeIdentity)).append("\n");
528554
sb.append(" includeTransactions: ").append(toIndentedString(includeTransactions)).append("\n");
555+
sb.append(" insightGuid: ").append(toIndentedString(insightGuid)).append("\n");
529556
sb.append(" isMobileWebview: ").append(toIndentedString(isMobileWebview)).append("\n");
530557
sb.append(" microwidgetInstanceId: ").append(toIndentedString(microwidgetInstanceId)).append("\n");
531558
sb.append(" mode: ").append(toIndentedString(mode)).append("\n");
@@ -565,6 +592,7 @@ private String toIndentedString(Object o) {
565592
openapiFields.add("disable_institution_search");
566593
openapiFields.add("include_identity");
567594
openapiFields.add("include_transactions");
595+
openapiFields.add("insight_guid");
568596
openapiFields.add("is_mobile_webview");
569597
openapiFields.add("microwidget_instance_id");
570598
openapiFields.add("mode");
@@ -622,6 +650,9 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
622650
if ((jsonObj.get("current_member_guid") != null && !jsonObj.get("current_member_guid").isJsonNull()) && !jsonObj.get("current_member_guid").isJsonPrimitive()) {
623651
throw new IllegalArgumentException(String.format("Expected the field `current_member_guid` to be a primitive type in the JSON string but got `%s`", jsonObj.get("current_member_guid").toString()));
624652
}
653+
if ((jsonObj.get("insight_guid") != null && !jsonObj.get("insight_guid").isJsonNull()) && !jsonObj.get("insight_guid").isJsonPrimitive()) {
654+
throw new IllegalArgumentException(String.format("Expected the field `insight_guid` to be a primitive type in the JSON string but got `%s`", jsonObj.get("insight_guid").toString()));
655+
}
625656
if ((jsonObj.get("microwidget_instance_id") != null && !jsonObj.get("microwidget_instance_id").isJsonNull()) && !jsonObj.get("microwidget_instance_id").isJsonPrimitive()) {
626657
throw new IllegalArgumentException(String.format("Expected the field `microwidget_instance_id` to be a primitive type in the JSON string but got `%s`", jsonObj.get("microwidget_instance_id").toString()));
627658
}

src/test/java/com/mx/client/model/WidgetRequestTest.java

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -109,6 +109,14 @@ public void includeTransactionsTest() {
109109
// TODO: test includeTransactions
110110
}
111111

112+
/**
113+
* Test the property 'insightGuid'
114+
*/
115+
@Test
116+
public void insightGuidTest() {
117+
// TODO: test insightGuid
118+
}
119+
112120
/**
113121
* Test the property 'isMobileWebview'
114122
*/

0 commit comments

Comments
 (0)