irita.sdk.module.nft.BurnNFTRequest 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;
public class BurnNFTRequest {
private String denom;
private String id;
public String getDenom() {
return denom;
}
public BurnNFTRequest setDenom(String denom) {
this.denom = denom;
return this;
}
public String getId() {
return id;
}
public BurnNFTRequest setId(String id) {
this.id = id;
return this;
}
}