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

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

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

import com.aliyun.tea.*;

public class SetContentAnalyzeConfigRequest extends TeaModel {
    /**
     * example:
     * 

true

*/ @NameInMap("Auto") public Boolean auto; /** * example: *

TEXT,FACE

*/ @NameInMap("SaveType") public String saveType; /** * example: *

S00000101-100070

*/ @NameInMap("TemplateId") public String templateId; public static SetContentAnalyzeConfigRequest build(java.util.Map map) throws Exception { SetContentAnalyzeConfigRequest self = new SetContentAnalyzeConfigRequest(); return TeaModel.build(map, self); } public SetContentAnalyzeConfigRequest setAuto(Boolean auto) { this.auto = auto; return this; } public Boolean getAuto() { return this.auto; } public SetContentAnalyzeConfigRequest setSaveType(String saveType) { this.saveType = saveType; return this; } public String getSaveType() { return this.saveType; } public SetContentAnalyzeConfigRequest setTemplateId(String templateId) { this.templateId = templateId; return this; } public String getTemplateId() { return this.templateId; } }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy