irita.sdk.model.GasInfo 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.model;
import com.alibaba.fastjson.annotation.JSONField;
public class GasInfo {
@JSONField(name = "gas_wanted")
private String gasWanted;
@JSONField(name = "gas_used")
private String gasUsed;
public void setGasWanted(String gasWanted) {
this.gasWanted = gasWanted;
}
public String getGasWanted() {
return gasWanted;
}
public void setGasUsed(String gasUsed) {
this.gasUsed = gasUsed;
}
public String getGasUsed() {
return gasUsed;
}
}