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

com.aliyun.dingtalkyida_1_0.models.GetProcessDesignRequest Maven / Gradle / Ivy

The newest version!
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkyida_1_0.models;

import com.aliyun.tea.*;

public class GetProcessDesignRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

APP_PBKT0MFBEBTDO8T7SLVP

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

This parameter is required.

* * example: *

hexxx

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

This parameter is required.

* * example: *

02465454670427591261

*/ @NameInMap("userId") public String userId; public static GetProcessDesignRequest build(java.util.Map map) throws Exception { GetProcessDesignRequest self = new GetProcessDesignRequest(); return TeaModel.build(map, self); } public GetProcessDesignRequest setAppType(String appType) { this.appType = appType; return this; } public String getAppType() { return this.appType; } public GetProcessDesignRequest setSystemToken(String systemToken) { this.systemToken = systemToken; return this; } public String getSystemToken() { return this.systemToken; } public GetProcessDesignRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy