Skip to content

Commit

Permalink
Merge branch 'release/1.21.0.54'
Browse files Browse the repository at this point in the history
  • Loading branch information
bunq-bot committed Oct 14, 2022
2 parents e9c7aa7 + 2366b99 commit 3cc2dbb
Showing 1 changed file with 44 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -59,6 +59,20 @@ public class RelationUser extends BunqModel {
@SerializedName("status")
private String status;

/**
* The account status of a user
*/
@Expose
@SerializedName("user_status")
private String userStatus;

/**
* The account status of a user
*/
@Expose
@SerializedName("counter_user_status")
private String counterUserStatus;

/**
* The user's ID.
*/
Expand Down Expand Up @@ -125,6 +139,28 @@ public void setStatus(String status) {
this.status = status;
}

/**
* The account status of a user
*/
public String getUserStatus() {
return this.userStatus;
}

public void setUserStatus(String userStatus) {
this.userStatus = userStatus;
}

/**
* The account status of a user
*/
public String getCounterUserStatus() {
return this.counterUserStatus;
}

public void setCounterUserStatus(String counterUserStatus) {
this.counterUserStatus = counterUserStatus;
}

/**
*/
public boolean isAllFieldNull() {
Expand Down Expand Up @@ -152,6 +188,14 @@ public boolean isAllFieldNull() {
return false;
}

if (this.userStatus != null) {
return false;
}

if (this.counterUserStatus != null) {
return false;
}

return true;
}

Expand Down

0 comments on commit 3cc2dbb

Please sign in to comment.