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

com.aliyun.dingtalkrcs_call_1_0.models.RunCallUserRequest 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.dingtalkrcs_call_1_0.models;

import com.aliyun.tea.*;

public class RunCallUserRequest extends TeaModel {
    /**
     * 

This parameter is required.

* * example: *

corpidxxxxx

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

This parameter is required.

* * example: *

xxxxx

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

This parameter is required.

* * example: *

xxxx

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

This parameter is required.

* * example: *

xxxx

*/ @NameInMap("userId") public String userId; public static RunCallUserRequest build(java.util.Map map) throws Exception { RunCallUserRequest self = new RunCallUserRequest(); return TeaModel.build(map, self); } public RunCallUserRequest setAuthorizeCorpId(String authorizeCorpId) { this.authorizeCorpId = authorizeCorpId; return this; } public String getAuthorizeCorpId() { return this.authorizeCorpId; } public RunCallUserRequest setAuthorizeUserId(String authorizeUserId) { this.authorizeUserId = authorizeUserId; return this; } public String getAuthorizeUserId() { return this.authorizeUserId; } public RunCallUserRequest setOrderId(String orderId) { this.orderId = orderId; return this; } public String getOrderId() { return this.orderId; } public RunCallUserRequest setUserId(String userId) { this.userId = userId; return this; } public String getUserId() { return this.userId; } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy