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.67
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 {
    /**
     * 

This parameter is required.

* * example: *

d12345

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

This parameter is required.

* * example: *

ding12345

*/ @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