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

com.aliyun.dingtalkdoc_1_0.models.InsertDropdownListsRequest Maven / Gradle / Ivy

There is a newer version: 2.1.67
Show newest version
// 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; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy