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.30
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 {
    // 授权isv套件企业的corpid
    @NameInMap("authorizeCorpId")
    public String authorizeCorpId;

    // 授权isv套件企业的员工userid
    @NameInMap("authorizeUserId")
    public String authorizeUserId;

    // 订单id
    @NameInMap("orderId")
    public String orderId;

    // isv套件所属企业下的员工userid
    @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