Skip to content
This repository was archived by the owner on Aug 20, 2023. It is now read-only.
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ public class Currency {
private String coinType;
private String baseAddress;
private String notice;

private Boolean isRestricted;

public String getCurrency() {
return currency;
Expand Down Expand Up @@ -81,5 +81,11 @@ public void setNotice(String notice) {
this.notice = notice;
}

public Boolean getIsRestricted() {
return isRestricted;
}

public Boolean setIsRestricted() {
return isRestricted;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public class Market {

private String logoUrl;

private Boolean isRestricted;


public String getMarketCurrency() {
return marketCurrency;
Expand Down Expand Up @@ -116,4 +118,12 @@ public String getLogoUrl() {
public void setLogoUrl(String logoUrl) {
this.logoUrl = logoUrl;
}

public Boolean getIsRestricted() {
return isRestricted;
}

public void setIsRestricted(Boolean restricted) {
isRestricted = restricted;
}
}
Loading