com.aliyun.dingtalkcalendar_1_0.models.GetSignOutLinkResponseBody 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 GetSignOutLinkResponseBody extends TeaModel {
@NameInMap("signOutLink")
public String signOutLink;
public static GetSignOutLinkResponseBody build(java.util.Map map) throws Exception {
GetSignOutLinkResponseBody self = new GetSignOutLinkResponseBody();
return TeaModel.build(map, self);
}
public GetSignOutLinkResponseBody setSignOutLink(String signOutLink) {
this.signOutLink = signOutLink;
return this;
}
public String getSignOutLink() {
return this.signOutLink;
}
}