Skip to content

Commit 9b03a6c

Browse files
Merge pull request #49 from mxenabled/openapi-generator-0.10.1
Generated version 0.10.1
2 parents d35b118 + 0e6b8c5 commit 9b03a6c

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

docs/InstitutionResponse.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,7 @@
88
Name | Type | Description | Notes
99
------------ | ------------- | ------------- | -------------
1010
**code** | **String** | | [optional]
11+
**instructionalText** | **String** | | [optional]
1112
**mediumLogoUrl** | **String** | | [optional]
1213
**name** | **String** | | [optional]
1314
**smallLogoUrl** | **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.10.0
6+
artifactVersion: 0.10.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.10.0</version>
8+
<version>0.10.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.10.0/java");
134+
setUserAgent("OpenAPI-Generator/0.10.1/java");
135135

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

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

Lines changed: 30 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,10 @@ public class InstitutionResponse {
3434
@SerializedName(SERIALIZED_NAME_CODE)
3535
private String code;
3636

37+
public static final String SERIALIZED_NAME_INSTRUCTIONAL_TEXT = "instructional_text";
38+
@SerializedName(SERIALIZED_NAME_INSTRUCTIONAL_TEXT)
39+
private String instructionalText;
40+
3741
public static final String SERIALIZED_NAME_MEDIUM_LOGO_URL = "medium_logo_url";
3842
@SerializedName(SERIALIZED_NAME_MEDIUM_LOGO_URL)
3943
private String mediumLogoUrl;
@@ -96,6 +100,29 @@ public void setCode(String code) {
96100
}
97101

98102

103+
public InstitutionResponse instructionalText(String instructionalText) {
104+
105+
this.instructionalText = instructionalText;
106+
return this;
107+
}
108+
109+
/**
110+
* Get instructionalText
111+
* @return instructionalText
112+
**/
113+
@javax.annotation.Nullable
114+
@ApiModelProperty(example = "Some instructional text <a href=\"https://example.url.chase.com/instructions\" id=\"instructional_text\">for end users</a>.", value = "")
115+
116+
public String getInstructionalText() {
117+
return instructionalText;
118+
}
119+
120+
121+
public void setInstructionalText(String instructionalText) {
122+
this.instructionalText = instructionalText;
123+
}
124+
125+
99126
public InstitutionResponse mediumLogoUrl(String mediumLogoUrl) {
100127

101128
this.mediumLogoUrl = mediumLogoUrl;
@@ -313,6 +340,7 @@ public boolean equals(Object o) {
313340
}
314341
InstitutionResponse institutionResponse = (InstitutionResponse) o;
315342
return Objects.equals(this.code, institutionResponse.code) &&
343+
Objects.equals(this.instructionalText, institutionResponse.instructionalText) &&
316344
Objects.equals(this.mediumLogoUrl, institutionResponse.mediumLogoUrl) &&
317345
Objects.equals(this.name, institutionResponse.name) &&
318346
Objects.equals(this.smallLogoUrl, institutionResponse.smallLogoUrl) &&
@@ -330,7 +358,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
330358

331359
@Override
332360
public int hashCode() {
333-
return Objects.hash(code, mediumLogoUrl, name, smallLogoUrl, supportsAccountIdentification, supportsAccountStatement, supportsAccountVerification, supportsOauth, supportsTransactionHistory, url);
361+
return Objects.hash(code, instructionalText, mediumLogoUrl, name, smallLogoUrl, supportsAccountIdentification, supportsAccountStatement, supportsAccountVerification, supportsOauth, supportsTransactionHistory, url);
334362
}
335363

336364
private static <T> int hashCodeNullable(JsonNullable<T> a) {
@@ -345,6 +373,7 @@ public String toString() {
345373
StringBuilder sb = new StringBuilder();
346374
sb.append("class InstitutionResponse {\n");
347375
sb.append(" code: ").append(toIndentedString(code)).append("\n");
376+
sb.append(" instructionalText: ").append(toIndentedString(instructionalText)).append("\n");
348377
sb.append(" mediumLogoUrl: ").append(toIndentedString(mediumLogoUrl)).append("\n");
349378
sb.append(" name: ").append(toIndentedString(name)).append("\n");
350379
sb.append(" smallLogoUrl: ").append(toIndentedString(smallLogoUrl)).append("\n");

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

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,14 @@ public void codeTest() {
4949
// TODO: test code
5050
}
5151

52+
/**
53+
* Test the property 'instructionalText'
54+
*/
55+
@Test
56+
public void instructionalTextTest() {
57+
// TODO: test instructionalText
58+
}
59+
5260
/**
5361
* Test the property 'mediumLogoUrl'
5462
*/

0 commit comments

Comments
 (0)