package com.dacrt.SBIABackend.dto;

import javax.validation.constraints.NotNull;

public class RequestersRecordsDto {
	@NotNull
	private Integer id;

	@NotNull
	private String name;
	
	@NotNull
	private String dsc;
	
	@NotNull
	private StatusDto status;
	
	@NotNull
	private TypeResponseDto2 type;
	
	ContactDto contactDto;

	public RequestersRecordsDto() {
		super();
	}

	public RequestersRecordsDto(@NotNull Integer id, @NotNull String name, @NotNull String dsc,
			@NotNull StatusDto status, @NotNull TypeResponseDto2 type, ContactDto contactDto) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.status = status;
		this.type = type;
		this.contactDto = contactDto;
	}

	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 String getDsc() {
		return dsc;
	}

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

	public StatusDto getStatus() {
		return status;
	}

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

	public TypeResponseDto2 getType() {
		return type;
	}

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

	public ContactDto getContactDto() {
		return contactDto;
	}

	public void setContactDto(ContactDto contactDto) {
		this.contactDto = contactDto;
	}

}
