package com.dacrt.SBIABackend.dto;

import java.util.ArrayList;
import java.util.List;

import com.fasterxml.jackson.annotation.JsonInclude;
@JsonInclude(JsonInclude.Include.NON_NULL)
public class RiskfollowupsDto {
	
	//rivate RiskFollowOpenDto open;
	//private List<RiskFollowactionsDto> actions;
	//private RiskFollowCloseDto close;
	private RiskFollowOpenDto open = new RiskFollowOpenDto();
    private List<RiskFollowactionsDto> actions = new ArrayList<>(); // Arreglo vacío []
    private RiskFollowCloseDto close = new RiskFollowCloseDto();
	
	
	public RiskfollowupsDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public RiskfollowupsDto(RiskFollowOpenDto open, List<RiskFollowactionsDto> actions, RiskFollowCloseDto close) {
		super();
		this.open = open;
		this.actions = actions;
		this.close = close;
	}

	public RiskFollowOpenDto getOpen() {
		return open;
	}

	public void setOpen(RiskFollowOpenDto open) {
		this.open = open;
	}

	public List<RiskFollowactionsDto> getActions() {
		return actions;
	}

	public void setActions(List<RiskFollowactionsDto> actions) {
		this.actions = actions;
	}

	public RiskFollowCloseDto getClose() {
		return close;
	}

	public void setClose(RiskFollowCloseDto close) {
		this.close = close;
	}
	 
}
