com.aliyun.dingtalkhrm_1_0.models.AddHrmPreentryResponseBody 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.dingtalkhrm_1_0.models;
import com.aliyun.tea.*;
public class AddHrmPreentryResponseBody extends TeaModel {
// result
@NameInMap("tmpUserId")
public String tmpUserId;
public static AddHrmPreentryResponseBody build(java.util.Map map) throws Exception {
AddHrmPreentryResponseBody self = new AddHrmPreentryResponseBody();
return TeaModel.build(map, self);
}
public AddHrmPreentryResponseBody setTmpUserId(String tmpUserId) {
this.tmpUserId = tmpUserId;
return this;
}
public String getTmpUserId() {
return this.tmpUserId;
}
}