com.aliyun.dingtalkesign_1_0.models.OrderResaleResponseBody 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 OrderResaleResponseBody extends TeaModel {
@NameInMap("code")
public Integer code;
@NameInMap("data")
public OrderResaleResponseBodyData data;
@NameInMap("message")
public String message;
public static OrderResaleResponseBody build(java.util.Map map) throws Exception {
OrderResaleResponseBody self = new OrderResaleResponseBody();
return TeaModel.build(map, self);
}
public OrderResaleResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public OrderResaleResponseBody setData(OrderResaleResponseBodyData data) {
this.data = data;
return this;
}
public OrderResaleResponseBodyData getData() {
return this.data;
}
public OrderResaleResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public static class OrderResaleResponseBodyData extends TeaModel {
@NameInMap("esignOrderId")
public String esignOrderId;
public static OrderResaleResponseBodyData build(java.util.Map map) throws Exception {
OrderResaleResponseBodyData self = new OrderResaleResponseBodyData();
return TeaModel.build(map, self);
}
public OrderResaleResponseBodyData setEsignOrderId(String esignOrderId) {
this.esignOrderId = esignOrderId;
return this;
}
public String getEsignOrderId() {
return this.esignOrderId;
}
}
}