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

com.aliyun.ice20201109.models.GetContentAnalyzeConfigResponseBody Maven / Gradle / Ivy

// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.ice20201109.models;

import com.aliyun.tea.*;

public class GetContentAnalyzeConfigResponseBody extends TeaModel {
    @NameInMap("ContentAnalyzeConfig")
    public GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig contentAnalyzeConfig;

    @NameInMap("RequestId")
    public String requestId;

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

    public GetContentAnalyzeConfigResponseBody setContentAnalyzeConfig(GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig contentAnalyzeConfig) {
        this.contentAnalyzeConfig = contentAnalyzeConfig;
        return this;
    }
    public GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig getContentAnalyzeConfig() {
        return this.contentAnalyzeConfig;
    }

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

    public static class GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig extends TeaModel {
        @NameInMap("Auto")
        public Boolean auto;

        @NameInMap("SaveType")
        public String saveType;

        @NameInMap("TemplateId")
        public String templateId;

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

        public GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig setAuto(Boolean auto) {
            this.auto = auto;
            return this;
        }
        public Boolean getAuto() {
            return this.auto;
        }

        public GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig setSaveType(String saveType) {
            this.saveType = saveType;
            return this;
        }
        public String getSaveType() {
            return this.saveType;
        }

        public GetContentAnalyzeConfigResponseBodyContentAnalyzeConfig setTemplateId(String templateId) {
            this.templateId = templateId;
            return this;
        }
        public String getTemplateId() {
            return this.templateId;
        }

    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy