FinanceRequiredDTO.java

package com.tradecloud.dto.api.plannedshipment;

import com.tradecloud.domain.autoemail.EmailEventType;

public class FinanceRequiredDTO {
    private String reference;
    private boolean required;
    private int termDays;
    private FinanceType financeType;
    private boolean insurance;
    private EmailEventType emailEventType;
    private ForexExchangeType forexExchangeType;

    public String getReference() {
        return reference;
    }

    public void setReference(String reference) {
        this.reference = reference;
    }

    public boolean isRequired() {
        return required;
    }

    public void setRequired(boolean required) {
        this.required = required;
    }

    public int getTermDays() {
        return termDays;
    }

    public void setTermDays(int termDays) {
        this.termDays = termDays;
    }

    public FinanceType getFinanceType() {
        return financeType;
    }

    public void setFinanceType(FinanceType financeType) {
        this.financeType = financeType;
    }

    public EmailEventType getEmailEventType() {
        return emailEventType;
    }

    public void setEmailEventType(EmailEventType emailEventType) {
        this.emailEventType = emailEventType;
    }

    public boolean isInsurance() {
        return insurance;
    }

    public void setInsurance(boolean insurance) {
        this.insurance = insurance;
    }

    public ForexExchangeType getForexExchangeType() {
        return forexExchangeType;
    }

    public void setForexExchangeType(ForexExchangeType forexExchangeType) {
        this.forexExchangeType = forexExchangeType;
    }
}