![JAR search and dependency download from the Maven repository](/logo.png)
com.aliyun.dingtalkbadge_1_0.models.CreateBadgeCodeUserInstanceResponseBody Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of dingtalk Show documentation
Show all versions of dingtalk Show documentation
Alibaba Cloud dingtalk SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.dingtalkbadge_1_0.models;
import com.aliyun.tea.*;
public class CreateBadgeCodeUserInstanceResponseBody extends TeaModel {
@NameInMap("codeDetailUrl")
public String codeDetailUrl;
/**
* This parameter is required.
*
* example:
* codexxxxxx
*/
@NameInMap("codeId")
public String codeId;
public static CreateBadgeCodeUserInstanceResponseBody build(java.util.Map map) throws Exception {
CreateBadgeCodeUserInstanceResponseBody self = new CreateBadgeCodeUserInstanceResponseBody();
return TeaModel.build(map, self);
}
public CreateBadgeCodeUserInstanceResponseBody setCodeDetailUrl(String codeDetailUrl) {
this.codeDetailUrl = codeDetailUrl;
return this;
}
public String getCodeDetailUrl() {
return this.codeDetailUrl;
}
public CreateBadgeCodeUserInstanceResponseBody setCodeId(String codeId) {
this.codeId = codeId;
return this;
}
public String getCodeId() {
return this.codeId;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy