All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.iot20180120.models.ListParserResponseBody Maven / Gradle / Ivy

There is a newer version: 6.0.0
Show newest version
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.iot20180120.models;

import com.aliyun.tea.*;

public class ListParserResponseBody extends TeaModel {
    @NameInMap("Code")
    public String code;

    @NameInMap("Data")
    public ListParserResponseBodyData data;

    @NameInMap("ErrorMessage")
    public String errorMessage;

    @NameInMap("RequestId")
    public String requestId;

    @NameInMap("Success")
    public Boolean success;

    @NameInMap("Total")
    public Integer total;

    public static ListParserResponseBody build(java.util.Map map) throws Exception {
        ListParserResponseBody self = new ListParserResponseBody();
        return TeaModel.build(map, self);
    }

    public ListParserResponseBody setCode(String code) {
        this.code = code;
        return this;
    }
    public String getCode() {
        return this.code;
    }

    public ListParserResponseBody setData(ListParserResponseBodyData data) {
        this.data = data;
        return this;
    }
    public ListParserResponseBodyData getData() {
        return this.data;
    }

    public ListParserResponseBody setErrorMessage(String errorMessage) {
        this.errorMessage = errorMessage;
        return this;
    }
    public String getErrorMessage() {
        return this.errorMessage;
    }

    public ListParserResponseBody setRequestId(String requestId) {
        this.requestId = requestId;
        return this;
    }
    public String getRequestId() {
        return this.requestId;
    }

    public ListParserResponseBody setSuccess(Boolean success) {
        this.success = success;
        return this;
    }
    public Boolean getSuccess() {
        return this.success;
    }

    public ListParserResponseBody setTotal(Integer total) {
        this.total = total;
        return this;
    }
    public Integer getTotal() {
        return this.total;
    }

    public static class ListParserResponseBodyDataParserList extends TeaModel {
        @NameInMap("Description")
        public String description;

        @NameInMap("Name")
        public String name;

        @NameInMap("ParserId")
        public Long parserId;

        @NameInMap("Status")
        public String status;

        @NameInMap("UtcCreated")
        public String utcCreated;

        @NameInMap("UtcModified")
        public String utcModified;

        public static ListParserResponseBodyDataParserList build(java.util.Map map) throws Exception {
            ListParserResponseBodyDataParserList self = new ListParserResponseBodyDataParserList();
            return TeaModel.build(map, self);
        }

        public ListParserResponseBodyDataParserList setDescription(String description) {
            this.description = description;
            return this;
        }
        public String getDescription() {
            return this.description;
        }

        public ListParserResponseBodyDataParserList setName(String name) {
            this.name = name;
            return this;
        }
        public String getName() {
            return this.name;
        }

        public ListParserResponseBodyDataParserList setParserId(Long parserId) {
            this.parserId = parserId;
            return this;
        }
        public Long getParserId() {
            return this.parserId;
        }

        public ListParserResponseBodyDataParserList setStatus(String status) {
            this.status = status;
            return this;
        }
        public String getStatus() {
            return this.status;
        }

        public ListParserResponseBodyDataParserList setUtcCreated(String utcCreated) {
            this.utcCreated = utcCreated;
            return this;
        }
        public String getUtcCreated() {
            return this.utcCreated;
        }

        public ListParserResponseBodyDataParserList setUtcModified(String utcModified) {
            this.utcModified = utcModified;
            return this;
        }
        public String getUtcModified() {
            return this.utcModified;
        }

    }

    public static class ListParserResponseBodyData extends TeaModel {
        @NameInMap("ParserList")
        public java.util.List parserList;

        public static ListParserResponseBodyData build(java.util.Map map) throws Exception {
            ListParserResponseBodyData self = new ListParserResponseBodyData();
            return TeaModel.build(map, self);
        }

        public ListParserResponseBodyData setParserList(java.util.List parserList) {
            this.parserList = parserList;
            return this;
        }
        public java.util.List getParserList() {
            return this.parserList;
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy