com.aliyun.dingtalkesign_1_0.models.GetSignNoticeUrlResponseBody 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.dingtalkesign_1_0.models;
import com.aliyun.tea.*;
public class GetSignNoticeUrlResponseBody extends TeaModel {
// 返回错误码
@NameInMap("code")
public Integer code;
// 返回数据
@NameInMap("data")
public GetSignNoticeUrlResponseBodyData data;
// 返回结果信息
@NameInMap("message")
public String message;
public static GetSignNoticeUrlResponseBody build(java.util.Map map) throws Exception {
GetSignNoticeUrlResponseBody self = new GetSignNoticeUrlResponseBody();
return TeaModel.build(map, self);
}
public GetSignNoticeUrlResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public GetSignNoticeUrlResponseBody setData(GetSignNoticeUrlResponseBodyData data) {
this.data = data;
return this;
}
public GetSignNoticeUrlResponseBodyData getData() {
return this.data;
}
public GetSignNoticeUrlResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public static class GetSignNoticeUrlResponseBodyData extends TeaModel {
// 移动端URL
@NameInMap("mobileUrl")
public String mobileUrl;
// PC端URL
@NameInMap("pcUrl")
public String pcUrl;
public static GetSignNoticeUrlResponseBodyData build(java.util.Map map) throws Exception {
GetSignNoticeUrlResponseBodyData self = new GetSignNoticeUrlResponseBodyData();
return TeaModel.build(map, self);
}
public GetSignNoticeUrlResponseBodyData setMobileUrl(String mobileUrl) {
this.mobileUrl = mobileUrl;
return this;
}
public String getMobileUrl() {
return this.mobileUrl;
}
public GetSignNoticeUrlResponseBodyData setPcUrl(String pcUrl) {
this.pcUrl = pcUrl;
return this;
}
public String getPcUrl() {
return this.pcUrl;
}
}
}