All Downloads are FREE. Search and download functionalities are using the official Maven repository.

irita.sdk.module.nft.QueryCollectionResp Maven / Gradle / Ivy

There is a newer version: 0.13
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy