com.aliyun.dingtalkexclusive_1_0.models.LogoutRequest 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.dingtalkexclusive_1_0.models;
import com.aliyun.tea.*;
public class LogoutRequest extends TeaModel {
/**
* This parameter is required.
*
* example:
* 1
*/
@NameInMap("deviceType")
public String deviceType;
/**
* This parameter is required.
*
* example:
* a523641
*/
@NameInMap("userId")
public String userId;
public static LogoutRequest build(java.util.Map map) throws Exception {
LogoutRequest self = new LogoutRequest();
return TeaModel.build(map, self);
}
public LogoutRequest setDeviceType(String deviceType) {
this.deviceType = deviceType;
return this;
}
public String getDeviceType() {
return this.deviceType;
}
public LogoutRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}