package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class VicepresidenciesResponseDto3 {
	@NotNull
	private Integer id;
	
	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	private TypeUnitDto type;

	private StateDto status;

	public VicepresidenciesResponseDto3() {
		super();
	}

	public VicepresidenciesResponseDto3(@NotNull Integer id, @NotNull String name,String dsc,@NotNull StateDto status,TypeUnitDto type) {
		super();
		this.id = id;
		this.name = name;
		this.type = type;
		this.dsc = dsc;
		this.status = status;
	}

	public Integer getId() {
		return id;
	}

	public void setId(Integer id) {
		this.id = id;
	}

	public String getName() {
		return name;
	}

	public void setName(String name) {
		this.name = name;
	}

	public StateDto getStatus() {
		return status;
	}

	public void setStatus(StateDto status) {
		this.status = status;
	}

	public String getDsc() {
		return dsc;
	}

	public void setDsc(String dsc) {
		this.dsc = dsc;
	}

	public TypeUnitDto getType() {
		return type;
	}

	public void setType(TypeUnitDto type) {
		this.type = type;
	}
	
}
