Skip to content

Commit 9691a84

Browse files
author
devexperience
committed
Generated version 0.28.0
This commit was automatically created by a GitHub Action to generate version 0.28.0 of this library.
1 parent a11cb41 commit 9691a84

8 files changed

Lines changed: 124 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.27.0.jar`
27+
- `target/mx-platform-java-0.28.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.27.0</version>
38+
<version>0.28.0</version>
3939
<scope>compile</scope>
4040
</dependency>
4141
```

docs/MemberResponse.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,11 @@
1515
|**institutionCode** | **String** | | [optional] |
1616
|**isBeingAggregated** | **Boolean** | | [optional] |
1717
|**isManagedByUser** | **Boolean** | | [optional] |
18+
|**isManual** | **Boolean** | | [optional] |
1819
|**isOauth** | **Boolean** | | [optional] |
1920
|**metadata** | **String** | | [optional] |
21+
|**mostRecentJobDetailCode** | **String** | | [optional] |
22+
|**mostRecentJobDetailText** | **String** | | [optional] |
2023
|**name** | **String** | | [optional] |
2124
|**oauthWindowUri** | **String** | | [optional] |
2225
|**successfullyAggregatedAt** | **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.27.0
6+
artifactVersion: 0.28.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.27.0</version>
8+
<version>0.28.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.27.0/java");
148+
setUserAgent("OpenAPI-Generator/0.28.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.27.0";
18+
public static final String VERSION = "0.28.0";
1919

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

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

Lines changed: 91 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,6 +84,10 @@ public class MemberResponse {
8484
@SerializedName(SERIALIZED_NAME_IS_MANAGED_BY_USER)
8585
private Boolean isManagedByUser;
8686

87+
public static final String SERIALIZED_NAME_IS_MANUAL = "is_manual";
88+
@SerializedName(SERIALIZED_NAME_IS_MANUAL)
89+
private Boolean isManual;
90+
8791
public static final String SERIALIZED_NAME_IS_OAUTH = "is_oauth";
8892
@SerializedName(SERIALIZED_NAME_IS_OAUTH)
8993
private Boolean isOauth;
@@ -92,6 +96,14 @@ public class MemberResponse {
9296
@SerializedName(SERIALIZED_NAME_METADATA)
9397
private String metadata;
9498

99+
public static final String SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_CODE = "most_recent_job_detail_code";
100+
@SerializedName(SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_CODE)
101+
private String mostRecentJobDetailCode;
102+
103+
public static final String SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_TEXT = "most_recent_job_detail_text";
104+
@SerializedName(SERIALIZED_NAME_MOST_RECENT_JOB_DETAIL_TEXT)
105+
private String mostRecentJobDetailText;
106+
95107
public static final String SERIALIZED_NAME_NAME = "name";
96108
@SerializedName(SERIALIZED_NAME_NAME)
97109
private String name;
@@ -283,6 +295,27 @@ public void setIsManagedByUser(Boolean isManagedByUser) {
283295
}
284296

285297

298+
public MemberResponse isManual(Boolean isManual) {
299+
300+
this.isManual = isManual;
301+
return this;
302+
}
303+
304+
/**
305+
* Get isManual
306+
* @return isManual
307+
**/
308+
@javax.annotation.Nullable
309+
public Boolean getIsManual() {
310+
return isManual;
311+
}
312+
313+
314+
public void setIsManual(Boolean isManual) {
315+
this.isManual = isManual;
316+
}
317+
318+
286319
public MemberResponse isOauth(Boolean isOauth) {
287320

288321
this.isOauth = isOauth;
@@ -325,6 +358,48 @@ public void setMetadata(String metadata) {
325358
}
326359

327360

361+
public MemberResponse mostRecentJobDetailCode(String mostRecentJobDetailCode) {
362+
363+
this.mostRecentJobDetailCode = mostRecentJobDetailCode;
364+
return this;
365+
}
366+
367+
/**
368+
* Get mostRecentJobDetailCode
369+
* @return mostRecentJobDetailCode
370+
**/
371+
@javax.annotation.Nullable
372+
public String getMostRecentJobDetailCode() {
373+
return mostRecentJobDetailCode;
374+
}
375+
376+
377+
public void setMostRecentJobDetailCode(String mostRecentJobDetailCode) {
378+
this.mostRecentJobDetailCode = mostRecentJobDetailCode;
379+
}
380+
381+
382+
public MemberResponse mostRecentJobDetailText(String mostRecentJobDetailText) {
383+
384+
this.mostRecentJobDetailText = mostRecentJobDetailText;
385+
return this;
386+
}
387+
388+
/**
389+
* Get mostRecentJobDetailText
390+
* @return mostRecentJobDetailText
391+
**/
392+
@javax.annotation.Nullable
393+
public String getMostRecentJobDetailText() {
394+
return mostRecentJobDetailText;
395+
}
396+
397+
398+
public void setMostRecentJobDetailText(String mostRecentJobDetailText) {
399+
this.mostRecentJobDetailText = mostRecentJobDetailText;
400+
}
401+
402+
328403
public MemberResponse name(String name) {
329404

330405
this.name = name;
@@ -448,8 +523,11 @@ public boolean equals(Object o) {
448523
Objects.equals(this.institutionCode, memberResponse.institutionCode) &&
449524
Objects.equals(this.isBeingAggregated, memberResponse.isBeingAggregated) &&
450525
Objects.equals(this.isManagedByUser, memberResponse.isManagedByUser) &&
526+
Objects.equals(this.isManual, memberResponse.isManual) &&
451527
Objects.equals(this.isOauth, memberResponse.isOauth) &&
452528
Objects.equals(this.metadata, memberResponse.metadata) &&
529+
Objects.equals(this.mostRecentJobDetailCode, memberResponse.mostRecentJobDetailCode) &&
530+
Objects.equals(this.mostRecentJobDetailText, memberResponse.mostRecentJobDetailText) &&
453531
Objects.equals(this.name, memberResponse.name) &&
454532
Objects.equals(this.oauthWindowUri, memberResponse.oauthWindowUri) &&
455533
Objects.equals(this.successfullyAggregatedAt, memberResponse.successfullyAggregatedAt) &&
@@ -463,7 +541,7 @@ private static <T> boolean equalsNullable(JsonNullable<T> a, JsonNullable<T> b)
463541

464542
@Override
465543
public int hashCode() {
466-
return Objects.hash(aggregatedAt, backgroundAggregationIsDisabled, connectionStatus, guid, id, institutionCode, isBeingAggregated, isManagedByUser, isOauth, metadata, name, oauthWindowUri, successfullyAggregatedAt, userGuid, userId);
544+
return Objects.hash(aggregatedAt, backgroundAggregationIsDisabled, connectionStatus, guid, id, institutionCode, isBeingAggregated, isManagedByUser, isManual, isOauth, metadata, mostRecentJobDetailCode, mostRecentJobDetailText, name, oauthWindowUri, successfullyAggregatedAt, userGuid, userId);
467545
}
468546

469547
private static <T> int hashCodeNullable(JsonNullable<T> a) {
@@ -485,8 +563,11 @@ public String toString() {
485563
sb.append(" institutionCode: ").append(toIndentedString(institutionCode)).append("\n");
486564
sb.append(" isBeingAggregated: ").append(toIndentedString(isBeingAggregated)).append("\n");
487565
sb.append(" isManagedByUser: ").append(toIndentedString(isManagedByUser)).append("\n");
566+
sb.append(" isManual: ").append(toIndentedString(isManual)).append("\n");
488567
sb.append(" isOauth: ").append(toIndentedString(isOauth)).append("\n");
489568
sb.append(" metadata: ").append(toIndentedString(metadata)).append("\n");
569+
sb.append(" mostRecentJobDetailCode: ").append(toIndentedString(mostRecentJobDetailCode)).append("\n");
570+
sb.append(" mostRecentJobDetailText: ").append(toIndentedString(mostRecentJobDetailText)).append("\n");
490571
sb.append(" name: ").append(toIndentedString(name)).append("\n");
491572
sb.append(" oauthWindowUri: ").append(toIndentedString(oauthWindowUri)).append("\n");
492573
sb.append(" successfullyAggregatedAt: ").append(toIndentedString(successfullyAggregatedAt)).append("\n");
@@ -522,8 +603,11 @@ private String toIndentedString(Object o) {
522603
openapiFields.add("institution_code");
523604
openapiFields.add("is_being_aggregated");
524605
openapiFields.add("is_managed_by_user");
606+
openapiFields.add("is_manual");
525607
openapiFields.add("is_oauth");
526608
openapiFields.add("metadata");
609+
openapiFields.add("most_recent_job_detail_code");
610+
openapiFields.add("most_recent_job_detail_text");
527611
openapiFields.add("name");
528612
openapiFields.add("oauth_window_uri");
529613
openapiFields.add("successfully_aggregated_at");
@@ -573,6 +657,12 @@ public static void validateJsonElement(JsonElement jsonElement) throws IOExcepti
573657
if ((jsonObj.get("metadata") != null && !jsonObj.get("metadata").isJsonNull()) && !jsonObj.get("metadata").isJsonPrimitive()) {
574658
throw new IllegalArgumentException(String.format("Expected the field `metadata` to be a primitive type in the JSON string but got `%s`", jsonObj.get("metadata").toString()));
575659
}
660+
if ((jsonObj.get("most_recent_job_detail_code") != null && !jsonObj.get("most_recent_job_detail_code").isJsonNull()) && !jsonObj.get("most_recent_job_detail_code").isJsonPrimitive()) {
661+
throw new IllegalArgumentException(String.format("Expected the field `most_recent_job_detail_code` to be a primitive type in the JSON string but got `%s`", jsonObj.get("most_recent_job_detail_code").toString()));
662+
}
663+
if ((jsonObj.get("most_recent_job_detail_text") != null && !jsonObj.get("most_recent_job_detail_text").isJsonNull()) && !jsonObj.get("most_recent_job_detail_text").isJsonPrimitive()) {
664+
throw new IllegalArgumentException(String.format("Expected the field `most_recent_job_detail_text` to be a primitive type in the JSON string but got `%s`", jsonObj.get("most_recent_job_detail_text").toString()));
665+
}
576666
if ((jsonObj.get("name") != null && !jsonObj.get("name").isJsonNull()) && !jsonObj.get("name").isJsonPrimitive()) {
577667
throw new IllegalArgumentException(String.format("Expected the field `name` to be a primitive type in the JSON string but got `%s`", jsonObj.get("name").toString()));
578668
}

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

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -102,6 +102,14 @@ public void isManagedByUserTest() {
102102
// TODO: test isManagedByUser
103103
}
104104

105+
/**
106+
* Test the property 'isManual'
107+
*/
108+
@Test
109+
public void isManualTest() {
110+
// TODO: test isManual
111+
}
112+
105113
/**
106114
* Test the property 'isOauth'
107115
*/
@@ -118,6 +126,22 @@ public void metadataTest() {
118126
// TODO: test metadata
119127
}
120128

129+
/**
130+
* Test the property 'mostRecentJobDetailCode'
131+
*/
132+
@Test
133+
public void mostRecentJobDetailCodeTest() {
134+
// TODO: test mostRecentJobDetailCode
135+
}
136+
137+
/**
138+
* Test the property 'mostRecentJobDetailText'
139+
*/
140+
@Test
141+
public void mostRecentJobDetailTextTest() {
142+
// TODO: test mostRecentJobDetailText
143+
}
144+
121145
/**
122146
* Test the property 'name'
123147
*/

0 commit comments

Comments
 (0)