com.aliyun.dingtalkdoc_1_0.models.InsertDropdownListsRequest Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkdoc_1_0.models;
import com.aliyun.tea.*;
public class InsertDropdownListsRequest extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("options")
public java.util.List options;
/**
* This parameter is required.
*
* example:
* ppgAQuHfOoNVpJiStDwWCEgiEiE
*/
@NameInMap("operatorId")
public String operatorId;
public static InsertDropdownListsRequest build(java.util.Map map) throws Exception {
InsertDropdownListsRequest self = new InsertDropdownListsRequest();
return TeaModel.build(map, self);
}
public InsertDropdownListsRequest setOptions(java.util.List options) {
this.options = options;
return this;
}
public java.util.List getOptions() {
return this.options;
}
public InsertDropdownListsRequest setOperatorId(String operatorId) {
this.operatorId = operatorId;
return this;
}
public String getOperatorId() {
return this.operatorId;
}
public static class InsertDropdownListsRequestOptions extends TeaModel {
@NameInMap("color")
public String color;
/**
* This parameter is required.
*/
@NameInMap("value")
public String value;
public static InsertDropdownListsRequestOptions build(java.util.Map map) throws Exception {
InsertDropdownListsRequestOptions self = new InsertDropdownListsRequestOptions();
return TeaModel.build(map, self);
}
public InsertDropdownListsRequestOptions setColor(String color) {
this.color = color;
return this;
}
public String getColor() {
return this.color;
}
public InsertDropdownListsRequestOptions setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
}