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

com.aliyun.dingtalkexclusive_1_0.models.GetAgentIdByRelatedAppIdRequest 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.dingtalkexclusive_1_0.models;

import com.aliyun.tea.*;

public class GetAgentIdByRelatedAppIdRequest extends TeaModel {
    // 应用的appId。
    @NameInMap("appId")
    public Long appId;

    // 被查询的组织id。
    @NameInMap("targetCorpId")
    public String targetCorpId;

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

    public GetAgentIdByRelatedAppIdRequest setAppId(Long appId) {
        this.appId = appId;
        return this;
    }
    public Long getAppId() {
        return this.appId;
    }

    public GetAgentIdByRelatedAppIdRequest setTargetCorpId(String targetCorpId) {
        this.targetCorpId = targetCorpId;
        return this;
    }
    public String getTargetCorpId() {
        return this.targetCorpId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy