com.aliyun.dingtalkcalendar_1_0.models.SignOutResponseBody 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.dingtalkcalendar_1_0.models;
import com.aliyun.tea.*;
public class SignOutResponseBody extends TeaModel {
// 签退时间戳
@NameInMap("checkOutTime")
public Long checkOutTime;
public static SignOutResponseBody build(java.util.Map map) throws Exception {
SignOutResponseBody self = new SignOutResponseBody();
return TeaModel.build(map, self);
}
public SignOutResponseBody setCheckOutTime(Long checkOutTime) {
this.checkOutTime = checkOutTime;
return this;
}
public Long getCheckOutTime() {
return this.checkOutTime;
}
}