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

com.aliyun.sas20181203.models.DescribeImageEventOperationConditionRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.sas20181203.models;

import com.aliyun.tea.*;

public class DescribeImageEventOperationConditionRequest extends TeaModel {
    /**
     * 

The alert type.

*
    *
  • Set the value to sensitiveFile.
  • *
* * example: *

sensitiveFile

*/ @NameInMap("EventType") public String eventType; /** *

The language of the content within the request and response. Default value: zh. Valid values:

*
    *
  • zh: Chinese.
  • *
  • en: English.
  • *
* * example: *

zh

*/ @NameInMap("Lang") public String lang; public static DescribeImageEventOperationConditionRequest build(java.util.Map map) throws Exception { DescribeImageEventOperationConditionRequest self = new DescribeImageEventOperationConditionRequest(); return TeaModel.build(map, self); } public DescribeImageEventOperationConditionRequest setEventType(String eventType) { this.eventType = eventType; return this; } public String getEventType() { return this.eventType; } public DescribeImageEventOperationConditionRequest setLang(String lang) { this.lang = lang; return this; } public String getLang() { return this.lang; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy