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

domain.StandingOrder Maven / Gradle / Ivy

There is a newer version: 5.5.43
Show newest version
package domain;

import io.swagger.annotations.ApiModel;
import lombok.Data;

import java.math.BigDecimal;
import java.time.LocalDate;
import java.util.Date;

/**
 * Created by alexg on 18.08.17.
 */
@Data
@ApiModel(description = "Standing order", value = "StandingOrder")
public class StandingOrder {

    private String orderId;
    private Cycle cycle;
    private int executionDay;
    private LocalDate firstExecutionDate;
    private LocalDate lastExecutionDate;
    private BigDecimal amount;
    private BankAccount otherAccount;
    private String usage;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy