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

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

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

    public GetProcessCodeByNameResponseBody setResult(GetProcessCodeByNameResponseBodyResult result) {
        this.result = result;
        return this;
    }
    public GetProcessCodeByNameResponseBodyResult getResult() {
        return this.result;
    }

    public static class GetProcessCodeByNameResponseBodyResult extends TeaModel {
        /**
         * 

This parameter is required.

*

Use the UTC time format: yyyy-MM-ddTHH:mmZ

* * example: *

2024-03-22T11:50Z

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

This parameter is required.

* * example: *

PROC-abcdef-example

*/ @NameInMap("processCode") public String processCode; public static GetProcessCodeByNameResponseBodyResult build(java.util.Map map) throws Exception { GetProcessCodeByNameResponseBodyResult self = new GetProcessCodeByNameResponseBodyResult(); return TeaModel.build(map, self); } public GetProcessCodeByNameResponseBodyResult setGmtModified(String gmtModified) { this.gmtModified = gmtModified; return this; } public String getGmtModified() { return this.gmtModified; } public GetProcessCodeByNameResponseBodyResult setProcessCode(String processCode) { this.processCode = processCode; return this; } public String getProcessCode() { return this.processCode; } } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy