package com.dacrt.SBIABackend.dto;

import java.util.List;

public class ChannelsEntryDto {
	

	private int id;
	private String name;
	private String dsc;
	private StatusDto2 status;
	private StatusDto2 type;
	private List<ServiceOffersDescDto> serviceoffers;
	private ChannelsAmountDto amountOP;
	private ChannelsAmountDto volumeOP;
	private int customerQty;
	private int capacity;
	private StatusDto2 capacityperiod;
	
	public ChannelsEntryDto(int id, String name, String dsc, StatusDto2 status, StatusDto2 type,
			List<ServiceOffersDescDto> serviceoffers, ChannelsAmountDto amountOP, ChannelsAmountDto volumeOP,
			int customerQty, int capacity, StatusDto2 capacityperiod) {
		super();
		this.id = id;
		this.name = name;
		this.dsc = dsc;
		this.status = status;
		this.type = type;
		this.serviceoffers = serviceoffers;
		this.amountOP = amountOP;
		this.volumeOP = volumeOP;
		this.customerQty = customerQty;
		this.capacity = capacity;
		this.capacityperiod = capacityperiod;
	}

	public ChannelsEntryDto() {
		super();
		// TODO Auto-generated constructor stub
	}

	public int getId() {
		return id;
	}

	public void setId(int 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 StatusDto2 getStatus() {
		return status;
	}

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

	public StatusDto2 getType() {
		return type;
	}

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

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

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

	public ChannelsAmountDto getAmountOP() {
		return amountOP;
	}

	public void setAmountOP(ChannelsAmountDto amountOP) {
		this.amountOP = amountOP;
	}

	public ChannelsAmountDto getVolumeOP() {
		return volumeOP;
	}

	public void setVolumeOP(ChannelsAmountDto volumeOP) {
		this.volumeOP = volumeOP;
	}

	public int getCustomerQty() {
		return customerQty;
	}

	public void setCustomerQty(int customerQty) {
		this.customerQty = customerQty;
	}

	public int getCapacity() {
		return capacity;
	}

	public void setCapacity(int capacity) {
		this.capacity = capacity;
	}

	public StatusDto2 getCapacityperiod() {
		return capacityperiod;
	}

	public void setCapacityperiod(StatusDto2 capacityperiod) {
		this.capacityperiod = capacityperiod;
	}
	
}
