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

io.github.nazarovctrl.paymemerchantapi.dto.reqeust.GetStatement Maven / Gradle / Ivy

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

public class GetStatement {
    private Long from;
    private Long to;

    public GetStatement(Params params) {
        this.from=params.getFrom();
        this.to= params.getTo();;
    }

    public static boolean isValid(Params params) {
        return params.getFrom() != null && params.getTo() != null;
    }

    public long getFrom() {
        return from;
    }

    public long getTo() {
        return to;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy