com.aliyun.cmn20200825.models.ListWorkOrdersResponse Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cmn20200825 Show documentation
Show all versions of cmn20200825 Show documentation
Alibaba Cloud cmn (20200825) SDK for Java
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.cmn20200825.models;
import com.aliyun.tea.*;
public class ListWorkOrdersResponse extends TeaModel {
@NameInMap("headers")
@Validation(required = true)
public java.util.Map headers;
@NameInMap("body")
@Validation(required = true)
public ListWorkOrdersResponseBody body;
public static ListWorkOrdersResponse build(java.util.Map map) throws Exception {
ListWorkOrdersResponse self = new ListWorkOrdersResponse();
return TeaModel.build(map, self);
}
public ListWorkOrdersResponse setHeaders(java.util.Map headers) {
this.headers = headers;
return this;
}
public java.util.Map getHeaders() {
return this.headers;
}
public ListWorkOrdersResponse setBody(ListWorkOrdersResponseBody body) {
this.body = body;
return this;
}
public ListWorkOrdersResponseBody getBody() {
return this.body;
}
}