com.aliyun.dingtalkcontact_1_0.models.SignOutRequest 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.dingtalkcontact_1_0.models;
import com.aliyun.tea.*;
public class SignOutRequest extends TeaModel {
@NameInMap("reason")
public String reason;
/**
* This parameter is required.
*/
@NameInMap("userId")
public String userId;
public static SignOutRequest build(java.util.Map map) throws Exception {
SignOutRequest self = new SignOutRequest();
return TeaModel.build(map, self);
}
public SignOutRequest setReason(String reason) {
this.reason = reason;
return this;
}
public String getReason() {
return this.reason;
}
public SignOutRequest setUserId(String userId) {
this.userId = userId;
return this;
}
public String getUserId() {
return this.userId;
}
}