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

com.aliyun.dingtalkworkflow_1_0.models.CopyProcessResponseBody 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 CopyProcessResponseBody extends TeaModel {
    @NameInMap("result")
    public java.util.List result;

    public static CopyProcessResponseBody build(java.util.Map map) throws Exception {
        CopyProcessResponseBody self = new CopyProcessResponseBody();
        return TeaModel.build(map, self);
    }

    public CopyProcessResponseBody setResult(java.util.List result) {
        this.result = result;
        return this;
    }
    public java.util.List getResult() {
        return this.result;
    }

    public static class CopyProcessResponseBodyResult extends TeaModel {
        /**
         * example:
         * 

abc

*/ @NameInMap("bizType") public String bizType; /** * example: *

abc

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

proc-abc

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy