package com.dacrt.SBIABackend.dto;

import java.util.List;

import javax.validation.constraints.NotNull;

public class ProcessActualizarDto {
	private Integer status;
	
	private String name;

	private String dsc;
	
	private String ref;
	
	private Integer processremotepar;
	
	private Integer processtypepar;
	
	private Integer operationlineid;
	
	private List<Integer> channels;

	private List<Integer> serviceoffers;

	public ProcessActualizarDto() {
		super();
	}

	public ProcessActualizarDto(Integer status, String name, String dsc, String ref, Integer processremotepar,
			Integer processtypepar, Integer operationlineid, List<Integer> channels, List<Integer> serviceoffers) {
		super();
		this.status = status;
		this.name = name;
		this.dsc = dsc;
		this.ref = ref;
		this.processremotepar = processremotepar;
		this.processtypepar = processtypepar;
		this.operationlineid = operationlineid;
		this.channels = channels;
		this.serviceoffers = serviceoffers;
	}

	public Integer getStatus() {
		return status;
	}

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

	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 String getRef() {
		return ref;
	}

	public void setRef(String ref) {
		this.ref = ref;
	}

	public Integer getProcessremotepar() {
		return processremotepar;
	}

	public void setProcessremotepar(Integer processremotepar) {
		this.processremotepar = processremotepar;
	}

	public Integer getProcesstypepar() {
		return processtypepar;
	}

	public void setProcesstypepar(Integer processtypepar) {
		this.processtypepar = processtypepar;
	}

	public Integer getOperationlineid() {
		return operationlineid;
	}

	public void setOperationlineid(Integer operationlineid) {
		this.operationlineid = operationlineid;
	}

	public List<Integer> getChannels() {
		return channels;
	}

	public void setChannels(List<Integer> channels) {
		this.channels = channels;
	}

	public List<Integer> getServiceoffers() {
		return serviceoffers;
	}

	public void setServiceoffers(List<Integer> serviceoffers) {
		this.serviceoffers = serviceoffers;
	}
	
	
}
