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

com.greenback.kit.model.TransactionStatus Maven / Gradle / Ivy

There is a newer version: 1.0.39
Show newest version
package com.greenback.kit.model;

import java.time.Instant;

public class TransactionStatus {

    private TransactionState state;
    private String message;
    private Instant updatedAt;

    public TransactionState getState() {
        return state;
    }

    public TransactionStatus setState(TransactionState state) {
        this.state = state;
        return this;
    }

    public String getMessage() {
        return message;
    }

    public TransactionStatus setMessage(String message) {
        this.message = message;
        return this;
    }

    public Instant getUpdatedAt() {
        return updatedAt;
    }

    public TransactionStatus setUpdatedAt(Instant updatedAt) {
        this.updatedAt = updatedAt;
        return this;
    }
    
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy