irita.sdk.module.nft.QueryOwnerResp Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of irita-sdk Show documentation
Show all versions of irita-sdk Show documentation
Irita open alliance chain SDK (java)
package irita.sdk.module.nft;
import java.util.List;
public class QueryOwnerResp {
private String address;
private List idcs;
public String getAddress() {
return address;
}
public void setAddress(String address) {
this.address = address;
}
public List getIdcs() {
return idcs;
}
public void setIdcs(List idcs) {
this.idcs = idcs;
}
}