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

com.aliyun.dingtalkworkflow_1_0.models.SelectOption Maven / Gradle / Ivy

The newest version!
// 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 - 2024 Weber Informatics LLC | Privacy Policy