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

io.github.nazarovctrl.paymemerchantapi.dto.result.PerformTransactionResult Maven / Gradle / Ivy

package io.github.nazarovctrl.paymemerchantapi.dto.result;

import com.fasterxml.jackson.annotation.JsonProperty;

public class PerformTransactionResult {
    private String transaction;
    @JsonProperty("perform_time")
    private Long performTime;
    private Integer state;

    public PerformTransactionResult(String transaction, Long performTime, Integer state) {
        this.transaction = transaction;
        this.performTime = performTime;
        this.state = state;
    }

    public String getTransaction() {
        return transaction;
    }

    public Long getPerformTime() {
        return performTime;
    }

    public Integer getState() {
        return state;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy