package incheon.sgp.thm.trf;

import java.util.List;

public class ItsCctvResponse {

    private Response response;

    public Response getResponse() {
        return response;
    }

    public void setResponse(Response response) {
        this.response = response;
    }

    public static class Response {
        private int coordtype;
        private List<Data> data;
        private int datacount;

        public int getCoordtype() {
            return coordtype;
        }

        public void setCoordtype(int coordtype) {
            this.coordtype = coordtype;
        }

        public List<Data> getData() {
            return data;
        }

        public void setData(List<Data> data) {
            this.data = data;
        }

        public int getDatacount() {
            return datacount;
        }

        public void setDatacount(int datacount) {
            this.datacount = datacount;
        }
    }

    public static class Data {
        private String roadsectionid;
        private Double coordx;
        private Double coordy;
        private String cctvresolution;
        private String filecreatetime;
        private int cctvtype;
        private String cctvformat;
        private String cctvname;
        private String cctvurl;

        public String getRoadsectionid() {
            return roadsectionid;
        }

        public void setRoadsectionid(String roadsectionid) {
            this.roadsectionid = roadsectionid;
        }

        public Double getCoordx() {
            return coordx;
        }

        public void setCoordx(Double coordx) {
            this.coordx = coordx;
        }

        public Double getCoordy() {
            return coordy;
        }

        public void setCoordy(Double coordy) {
            this.coordy = coordy;
        }

        public String getCctvresolution() {
            return cctvresolution;
        }

        public void setCctvresolution(String cctvresolution) {
            this.cctvresolution = cctvresolution;
        }

        public String getFilecreatetime() {
            return filecreatetime;
        }

        public void setFilecreatetime(String filecreatetime) {
            this.filecreatetime = filecreatetime;
        }

        public int getCctvtype() {
            return cctvtype;
        }

        public void setCctvtype(int cctvtype) {
            this.cctvtype = cctvtype;
        }

        public String getCctvformat() {
            return cctvformat;
        }

        public void setCctvformat(String cctvformat) {
            this.cctvformat = cctvformat;
        }

        public String getCctvname() {
            return cctvname;
        }

        public void setCctvname(String cctvname) {
            this.cctvname = cctvname;
        }

        public String getCctvurl() {
            return cctvurl;
        }

        public void setCctvurl(String cctvurl) {
            this.cctvurl = cctvurl;
        }
    }
}
