
com.aliyun.dingtalkworkflow_1_0.models.SelectOption Maven / Gradle / Ivy
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkworkflow_1_0.models;
import com.aliyun.tea.*;
public class SelectOption extends TeaModel {
/**
* example:
* finance
*/
@NameInMap("key")
public String key;
/**
* example:
* 财务
*/
@NameInMap("value")
public String value;
public static SelectOption build(java.util.Map map) throws Exception {
SelectOption self = new SelectOption();
return TeaModel.build(map, self);
}
public SelectOption setKey(String key) {
this.key = key;
return this;
}
public String getKey() {
return this.key;
}
public SelectOption setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy