
io.github.nazarovctrl.paymemerchantapi.dto.result.CreateTransactionResult Maven / Gradle / Ivy
package io.github.nazarovctrl.paymemerchantapi.dto.result;
import com.fasterxml.jackson.annotation.JsonProperty;
public class CreateTransactionResult {
@JsonProperty("create_time")
private long createTime;
private String transaction;
private Integer state;
public CreateTransactionResult(long createTime, String transaction, Integer state) {
this.createTime = createTime;
this.transaction = transaction;
this.state = state;
}
public long getCreateTime() {
return createTime;
}
public String getTransaction() {
return transaction;
}
public Integer getState() {
return state;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy