com.aliyun.dingtalkfinance_1_0.models.UpateUserCodeInstanceResponseBody 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.dingtalkfinance_1_0.models;
import com.aliyun.tea.*;
public class UpateUserCodeInstanceResponseBody extends TeaModel {
/**
* example:
* codexxxxxx
*/
@NameInMap("codeId")
public String codeId;
public static UpateUserCodeInstanceResponseBody build(java.util.Map map) throws Exception {
UpateUserCodeInstanceResponseBody self = new UpateUserCodeInstanceResponseBody();
return TeaModel.build(map, self);
}
public UpateUserCodeInstanceResponseBody setCodeId(String codeId) {
this.codeId = codeId;
return this;
}
public String getCodeId() {
return this.codeId;
}
}