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

com.aliyun.dingtalkworkflow_1_0.models.AvaliableTemplate 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.dingtalkworkflow_1_0.models;

import com.aliyun.tea.*;

public class AvaliableTemplate extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

出差申请

*/ @NameInMap("name") public String name; /** *

This parameter is required.

* * example: *

PROC-abcd

*/ @NameInMap("processCode") public String processCode; public static AvaliableTemplate build(java.util.Map map) throws Exception { AvaliableTemplate self = new AvaliableTemplate(); return TeaModel.build(map, self); } public AvaliableTemplate setName(String name) { this.name = name; return this; } public String getName() { return this.name; } public AvaliableTemplate setProcessCode(String processCode) { this.processCode = processCode; return this; } public String getProcessCode() { return this.processCode; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy