irita.sdk.module.nft.QueryCollectionResp 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 QueryCollectionResp {
private QueryDenomResp denom;
private List nfts;
public QueryDenomResp getDenom() {
return denom;
}
public void setDenom(QueryDenomResp denom) {
this.denom = denom;
}
public List getNfts() {
return nfts;
}
public void setNfts(List nfts) {
this.nfts = nfts;
}
}