com.aliyun.dingtalkservice_group_1_0.models.CloseHumanSessionResponseBody 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.dingtalkservice_group_1_0.models;
import com.aliyun.tea.*;
public class CloseHumanSessionResponseBody extends TeaModel {
/**
* This parameter is required.
*/
@NameInMap("sessionId")
public Long sessionId;
public static CloseHumanSessionResponseBody build(java.util.Map map) throws Exception {
CloseHumanSessionResponseBody self = new CloseHumanSessionResponseBody();
return TeaModel.build(map, self);
}
public CloseHumanSessionResponseBody setSessionId(Long sessionId) {
this.sessionId = sessionId;
return this;
}
public Long getSessionId() {
return this.sessionId;
}
}