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

com.aliyun.dingtalkdiot_1_0.models.BindSystemResponseBody 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.dingtalkdiot_1_0.models;

import com.aliyun.tea.*;

public class BindSystemResponseBody extends TeaModel {
    // 三方平台的用户ID。
    @NameInMap("clientId")
    public String clientId;

    // 钉钉物联组织ID。
    @NameInMap("corpId")
    public String corpId;

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

    public BindSystemResponseBody setClientId(String clientId) {
        this.clientId = clientId;
        return this;
    }
    public String getClientId() {
        return this.clientId;
    }

    public BindSystemResponseBody setCorpId(String corpId) {
        this.corpId = corpId;
        return this;
    }
    public String getCorpId() {
        return this.corpId;
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy