Skip to content

Commit 67aa1ae

Browse files
authored
Merge pull request #60 from mxenabled/openapi-generator-0.11.1
Generated version 0.11.1
2 parents 272fd53 + b86cff4 commit 67aa1ae

File tree

7 files changed

+44
-6
lines changed

7 files changed

+44
-6
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.11.0.jar`
27+
- `target/mx-platform-java-0.11.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>0.11.0</version>
38+
<version>0.11.1</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
@@ -12,6 +12,7 @@ Name | Type | Description | Notes
1212
**currentInstitutionCode** | **String** | | [optional]
1313
**currentInstitutionGuid** | **String** | | [optional]
1414
**currentMemberGuid** | **String** | | [optional]
15+
**disableBackgroundAgg** | **Boolean** | | [optional]
1516
**disableInstitutionSearch** | **Boolean** | | [optional]
1617
**includeIdentity** | **Boolean** | | [optional]
1718
**includeTransactions** | **Boolean** | | [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.11.0
6+
artifactVersion: 0.11.1
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.11.0</version>
8+
<version>0.11.1</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
@@ -131,7 +131,7 @@ private void init() {
131131
json = new JSON();
132132

133133
// Set default User-Agent.
134-
setUserAgent("OpenAPI-Generator/0.11.0/java");
134+
setUserAgent("OpenAPI-Generator/0.11.1/java");
135135

136136
authentications = new HashMap<String, Authentication>();
137137
}

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

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,10 @@ public class WidgetRequest {
4949
@SerializedName(SERIALIZED_NAME_CURRENT_MEMBER_GUID)
5050
private String currentMemberGuid;
5151

52+
public static final String SERIALIZED_NAME_DISABLE_BACKGROUND_AGG = "disable_background_agg";
53+
@SerializedName(SERIALIZED_NAME_DISABLE_BACKGROUND_AGG)
54+
private Boolean disableBackgroundAgg;
55+
5256
public static final String SERIALIZED_NAME_DISABLE_INSTITUTION_SEARCH = "disable_institution_search";
5357
@SerializedName(SERIALIZED_NAME_DISABLE_INSTITUTION_SEARCH)
5458
private Boolean disableInstitutionSearch;
@@ -207,6 +211,29 @@ public void setCurrentMemberGuid(String currentMemberGuid) {
207211
}
208212

209213

214+
public WidgetRequest disableBackgroundAgg(Boolean disableBackgroundAgg) {
215+
216+
this.disableBackgroundAgg = disableBackgroundAgg;
217+
return this;
218+
}
219+
220+
/**
221+
* Get disableBackgroundAgg
222+
* @return disableBackgroundAgg
223+
**/
224+
@javax.annotation.Nullable
225+
@ApiModelProperty(example = "false", value = "")
226+
227+
public Boolean getDisableBackgroundAgg() {
228+
return disableBackgroundAgg;
229+
}
230+
231+
232+
public void setDisableBackgroundAgg(Boolean disableBackgroundAgg) {
233+
this.disableBackgroundAgg = disableBackgroundAgg;
234+
}
235+
236+
210237
public WidgetRequest disableInstitutionSearch(Boolean disableInstitutionSearch) {
211238

212239
this.disableInstitutionSearch = disableInstitutionSearch;
@@ -451,6 +478,7 @@ public boolean equals(Object o) {
451478
Objects.equals(this.currentInstitutionCode, widgetRequest.currentInstitutionCode) &&
452479
Objects.equals(this.currentInstitutionGuid, widgetRequest.currentInstitutionGuid) &&
453480
Objects.equals(this.currentMemberGuid, widgetRequest.currentMemberGuid) &&
481+
Objects.equals(this.disableBackgroundAgg, widgetRequest.disableBackgroundAgg) &&
454482
Objects.equals(this.disableInstitutionSearch, widgetRequest.disableInstitutionSearch) &&
455483
Objects.equals(this.includeIdentity, widgetRequest.includeIdentity) &&
456484
Objects.equals(this.includeTransactions, widgetRequest.includeTransactions) &&
@@ -465,7 +493,7 @@ public boolean equals(Object o) {
465493

466494
@Override
467495
public int hashCode() {
468-
return Objects.hash(clientRedirectUrl, colorScheme, currentInstitutionCode, currentInstitutionGuid, currentMemberGuid, disableInstitutionSearch, includeIdentity, includeTransactions, isMobileWebview, mode, oauthReferralSource, uiMessageVersion, uiMessageWebviewUrlScheme, updateCredentials, widgetType);
496+
return Objects.hash(clientRedirectUrl, colorScheme, currentInstitutionCode, currentInstitutionGuid, currentMemberGuid, disableBackgroundAgg, disableInstitutionSearch, includeIdentity, includeTransactions, isMobileWebview, mode, oauthReferralSource, uiMessageVersion, uiMessageWebviewUrlScheme, updateCredentials, widgetType);
469497
}
470498

471499
@Override
@@ -477,6 +505,7 @@ public String toString() {
477505
sb.append(" currentInstitutionCode: ").append(toIndentedString(currentInstitutionCode)).append("\n");
478506
sb.append(" currentInstitutionGuid: ").append(toIndentedString(currentInstitutionGuid)).append("\n");
479507
sb.append(" currentMemberGuid: ").append(toIndentedString(currentMemberGuid)).append("\n");
508+
sb.append(" disableBackgroundAgg: ").append(toIndentedString(disableBackgroundAgg)).append("\n");
480509
sb.append(" disableInstitutionSearch: ").append(toIndentedString(disableInstitutionSearch)).append("\n");
481510
sb.append(" includeIdentity: ").append(toIndentedString(includeIdentity)).append("\n");
482511
sb.append(" includeTransactions: ").append(toIndentedString(includeTransactions)).append("\n");

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,14 @@ public void currentMemberGuidTest() {
8080
// TODO: test currentMemberGuid
8181
}
8282

83+
/**
84+
* Test the property 'disableBackgroundAgg'
85+
*/
86+
@Test
87+
public void disableBackgroundAggTest() {
88+
// TODO: test disableBackgroundAgg
89+
}
90+
8391
/**
8492
* Test the property 'disableInstitutionSearch'
8593
*/

0 commit comments

Comments
 (0)