index
int64 | repo_id
string | file_path
string | content
string |
|---|---|---|---|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelSceneItemsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemsRequest extends TeaModel {
/**
* <p>hotelID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80d84ea8ed9e422fbad52715c8fc56f1</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>ListHotelSceneReq</p>
* <p>This parameter is required.</p>
*/
@NameInMap("ListHotelSceneReq")
public ListHotelSceneItemsRequestListHotelSceneReq listHotelSceneReq;
public static ListHotelSceneItemsRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsRequest self = new ListHotelSceneItemsRequest();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelSceneItemsRequest setListHotelSceneReq(ListHotelSceneItemsRequestListHotelSceneReq listHotelSceneReq) {
this.listHotelSceneReq = listHotelSceneReq;
return this;
}
public ListHotelSceneItemsRequestListHotelSceneReq getListHotelSceneReq() {
return this.listHotelSceneReq;
}
public static class ListHotelSceneItemsRequestListHotelSceneReqPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListHotelSceneItemsRequestListHotelSceneReqPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsRequestListHotelSceneReqPage self = new ListHotelSceneItemsRequestListHotelSceneReqPage();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsRequestListHotelSceneReqPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelSceneItemsRequestListHotelSceneReqPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
public static class ListHotelSceneItemsRequestListHotelSceneReq extends TeaModel {
/**
* <strong>example:</strong>
* <p>客用品类</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>棉签</p>
*/
@NameInMap("Keywords")
public String keywords;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public ListHotelSceneItemsRequestListHotelSceneReqPage page;
/**
* <strong>example:</strong>
* <p>已添加</p>
*/
@NameInMap("Status")
public String status;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>GOODS</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelSceneItemsRequestListHotelSceneReq build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsRequestListHotelSceneReq self = new ListHotelSceneItemsRequestListHotelSceneReq();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsRequestListHotelSceneReq setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListHotelSceneItemsRequestListHotelSceneReq setKeywords(String keywords) {
this.keywords = keywords;
return this;
}
public String getKeywords() {
return this.keywords;
}
public ListHotelSceneItemsRequestListHotelSceneReq setPage(ListHotelSceneItemsRequestListHotelSceneReqPage page) {
this.page = page;
return this;
}
public ListHotelSceneItemsRequestListHotelSceneReqPage getPage() {
return this.page;
}
public ListHotelSceneItemsRequestListHotelSceneReq setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListHotelSceneItemsRequestListHotelSceneReq setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelSceneItemsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelSceneItemsResponseBody body;
public static ListHotelSceneItemsResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsResponse self = new ListHotelSceneItemsResponse();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelSceneItemsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelSceneItemsResponse setBody(ListHotelSceneItemsResponseBody body) {
this.body = body;
return this;
}
public ListHotelSceneItemsResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelSceneItemsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListHotelSceneItemsResponseBodyResult result;
public static ListHotelSceneItemsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsResponseBody self = new ListHotelSceneItemsResponseBody();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelSceneItemsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelSceneItemsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelSceneItemsResponseBody setResult(ListHotelSceneItemsResponseBodyResult result) {
this.result = result;
return this;
}
public ListHotelSceneItemsResponseBodyResult getResult() {
return this.result;
}
public static class ListHotelSceneItemsResponseBodyResultPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>False</p>
*/
@NameInMap("HasNext")
public Boolean hasNext;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>23</p>
*/
@NameInMap("Total")
public Integer total;
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("TotalPage")
public Integer totalPage;
public static ListHotelSceneItemsResponseBodyResultPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsResponseBodyResultPage self = new ListHotelSceneItemsResponseBodyResultPage();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsResponseBodyResultPage setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListHotelSceneItemsResponseBodyResultPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelSceneItemsResponseBodyResultPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListHotelSceneItemsResponseBodyResultPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public ListHotelSceneItemsResponseBodyResultPage setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Integer getTotalPage() {
return this.totalPage;
}
}
public static class ListHotelSceneItemsResponseBodyResultSceneItemList extends TeaModel {
@NameInMap("BeyondLimitReply")
public String beyondLimitReply;
/**
* <strong>example:</strong>
* <p>客用品类</p>
*/
@NameInMap("Category")
public String category;
@NameInMap("DeliveryMethod")
public String deliveryMethod;
/**
* <strong>example:</strong>
* <p><a href="https://ailabsaicloudservice.alicdn.com/hotel/icon/jiudianmianban_fuwushangpintu/wupin/keyongpinlei/mianqian.png">https://ailabsaicloudservice.alicdn.com/hotel/icon/jiudianmianban_fuwushangpintu/wupin/keyongpinlei/mianqian.png</a></p>
*/
@NameInMap("Icon")
public String icon;
/**
* <p>id</p>
*
* <strong>example:</strong>
* <p>10336</p>
*/
@NameInMap("Id")
public Long id;
@NameInMap("LimitNumber")
public Integer limitNumber;
@NameInMap("LimitSwitch")
public Integer limitSwitch;
/**
* <strong>example:</strong>
* <p>棉签</p>
*/
@NameInMap("Name")
public String name;
@NameInMap("PaymentMethod")
public String paymentMethod;
/**
* <strong>example:</strong>
* <p>160</p>
*/
@NameInMap("Price")
public Long price;
@NameInMap("RobotName")
public String robotName;
/**
* <strong>example:</strong>
* <p>已添加</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>GOODS</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>1666163226</p>
*/
@NameInMap("UpdateTime")
public Long updateTime;
public static ListHotelSceneItemsResponseBodyResultSceneItemList build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsResponseBodyResultSceneItemList self = new ListHotelSceneItemsResponseBodyResultSceneItemList();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setBeyondLimitReply(String beyondLimitReply) {
this.beyondLimitReply = beyondLimitReply;
return this;
}
public String getBeyondLimitReply() {
return this.beyondLimitReply;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setDeliveryMethod(String deliveryMethod) {
this.deliveryMethod = deliveryMethod;
return this;
}
public String getDeliveryMethod() {
return this.deliveryMethod;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setLimitNumber(Integer limitNumber) {
this.limitNumber = limitNumber;
return this;
}
public Integer getLimitNumber() {
return this.limitNumber;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setLimitSwitch(Integer limitSwitch) {
this.limitSwitch = limitSwitch;
return this;
}
public Integer getLimitSwitch() {
return this.limitSwitch;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setPaymentMethod(String paymentMethod) {
this.paymentMethod = paymentMethod;
return this;
}
public String getPaymentMethod() {
return this.paymentMethod;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setPrice(Long price) {
this.price = price;
return this;
}
public Long getPrice() {
return this.price;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setRobotName(String robotName) {
this.robotName = robotName;
return this;
}
public String getRobotName() {
return this.robotName;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListHotelSceneItemsResponseBodyResultSceneItemList setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
public Long getUpdateTime() {
return this.updateTime;
}
}
public static class ListHotelSceneItemsResponseBodyResult extends TeaModel {
@NameInMap("Page")
public ListHotelSceneItemsResponseBodyResultPage page;
@NameInMap("SceneItemList")
public java.util.List<ListHotelSceneItemsResponseBodyResultSceneItemList> sceneItemList;
public static ListHotelSceneItemsResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsResponseBodyResult self = new ListHotelSceneItemsResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsResponseBodyResult setPage(ListHotelSceneItemsResponseBodyResultPage page) {
this.page = page;
return this;
}
public ListHotelSceneItemsResponseBodyResultPage getPage() {
return this.page;
}
public ListHotelSceneItemsResponseBodyResult setSceneItemList(java.util.List<ListHotelSceneItemsResponseBodyResultSceneItemList> sceneItemList) {
this.sceneItemList = sceneItemList;
return this;
}
public java.util.List<ListHotelSceneItemsResponseBodyResultSceneItemList> getSceneItemList() {
return this.sceneItemList;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelSceneItemsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemsShrinkRequest extends TeaModel {
/**
* <p>hotelID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80d84ea8ed9e422fbad52715c8fc56f1</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>ListHotelSceneReq</p>
* <p>This parameter is required.</p>
*/
@NameInMap("ListHotelSceneReq")
public String listHotelSceneReqShrink;
public static ListHotelSceneItemsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsShrinkRequest self = new ListHotelSceneItemsShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelSceneItemsShrinkRequest setListHotelSceneReqShrink(String listHotelSceneReqShrink) {
this.listHotelSceneReqShrink = listHotelSceneReqShrink;
return this;
}
public String getListHotelSceneReqShrink() {
return this.listHotelSceneReqShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelServiceCategoryHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelServiceCategoryHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListHotelServiceCategoryHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryHeaders self = new ListHotelServiceCategoryHeaders();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelServiceCategoryHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelServiceCategoryHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelServiceCategoryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelServiceCategoryRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public ListHotelServiceCategoryRequestPayload payload;
public static ListHotelServiceCategoryRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryRequest self = new ListHotelServiceCategoryRequest();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryRequest setPayload(ListHotelServiceCategoryRequestPayload payload) {
this.payload = payload;
return this;
}
public ListHotelServiceCategoryRequestPayload getPayload() {
return this.payload;
}
public static class ListHotelServiceCategoryRequestPayload extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOTEL_SERVICE</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelServiceCategoryRequestPayload build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryRequestPayload self = new ListHotelServiceCategoryRequestPayload();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryRequestPayload setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelServiceCategoryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelServiceCategoryResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelServiceCategoryResponseBody body;
public static ListHotelServiceCategoryResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryResponse self = new ListHotelServiceCategoryResponse();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelServiceCategoryResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelServiceCategoryResponse setBody(ListHotelServiceCategoryResponseBody body) {
this.body = body;
return this;
}
public ListHotelServiceCategoryResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelServiceCategoryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelServiceCategoryResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>5373C821-65D2-1764-B9F9-951914937FF5</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListHotelServiceCategoryResponseBodyResult> result;
public static ListHotelServiceCategoryResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryResponseBody self = new ListHotelServiceCategoryResponseBody();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelServiceCategoryResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelServiceCategoryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelServiceCategoryResponseBody setResult(java.util.List<ListHotelServiceCategoryResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListHotelServiceCategoryResponseBodyResult> getResult() {
return this.result;
}
public static class ListHotelServiceCategoryResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>GOODS</p>
*/
@NameInMap("Code")
public String code;
/**
* <strong>example:</strong>
* <p>生活及洗漱用品</p>
*/
@NameInMap("Desc")
public String desc;
/**
* <strong>example:</strong>
* <p><a href="https://ailabsaicloudservice.alicdn.com/hotel/icon/changjingfenlei/wupintianjia.png">https://ailabsaicloudservice.alicdn.com/hotel/icon/changjingfenlei/wupintianjia.png</a></p>
*/
@NameInMap("Icon")
public String icon;
/**
* <strong>example:</strong>
* <p>物品添加</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>HOTEL_SERVICE</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelServiceCategoryResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryResponseBodyResult self = new ListHotelServiceCategoryResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryResponseBodyResult setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public ListHotelServiceCategoryResponseBodyResult setDesc(String desc) {
this.desc = desc;
return this;
}
public String getDesc() {
return this.desc;
}
public ListHotelServiceCategoryResponseBodyResult setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ListHotelServiceCategoryResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListHotelServiceCategoryResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelServiceCategoryShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelServiceCategoryShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public String payloadShrink;
public static ListHotelServiceCategoryShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelServiceCategoryShrinkRequest self = new ListHotelServiceCategoryShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelServiceCategoryShrinkRequest setPayloadShrink(String payloadShrink) {
this.payloadShrink = payloadShrink;
return this;
}
public String getPayloadShrink() {
return this.payloadShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListHotelsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelsHeaders self = new ListHotelsHeaders();
return TeaModel.build(map, self);
}
public ListHotelsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelsHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelsRequest extends TeaModel {
/**
* <strong>if can be null:</strong>
* <p>true</p>
*/
@NameInMap("HotelRequest")
public ListHotelsRequestHotelRequest hotelRequest;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public ListHotelsRequestPage page;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Status")
public Integer status;
public static ListHotelsRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelsRequest self = new ListHotelsRequest();
return TeaModel.build(map, self);
}
public ListHotelsRequest setHotelRequest(ListHotelsRequestHotelRequest hotelRequest) {
this.hotelRequest = hotelRequest;
return this;
}
public ListHotelsRequestHotelRequest getHotelRequest() {
return this.hotelRequest;
}
public ListHotelsRequest setPage(ListHotelsRequestPage page) {
this.page = page;
return this;
}
public ListHotelsRequestPage getPage() {
return this.page;
}
public ListHotelsRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public static class ListHotelsRequestHotelRequest extends TeaModel {
@NameInMap("HotelId")
public String hotelId;
public static ListHotelsRequestHotelRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelsRequestHotelRequest self = new ListHotelsRequestHotelRequest();
return TeaModel.build(map, self);
}
public ListHotelsRequestHotelRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
}
public static class ListHotelsRequestPage extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListHotelsRequestPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelsRequestPage self = new ListHotelsRequestPage();
return TeaModel.build(map, self);
}
public ListHotelsRequestPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelsRequestPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelsResponseBody body;
public static ListHotelsResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelsResponse self = new ListHotelsResponse();
return TeaModel.build(map, self);
}
public ListHotelsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelsResponse setBody(ListHotelsResponseBody body) {
this.body = body;
return this;
}
public ListHotelsResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <p>RequestId</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListHotelsResponseBodyResult result;
public static ListHotelsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelsResponseBody self = new ListHotelsResponseBody();
return TeaModel.build(map, self);
}
public ListHotelsResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelsResponseBody setResult(ListHotelsResponseBodyResult result) {
this.result = result;
return this;
}
public ListHotelsResponseBodyResult getResult() {
return this.result;
}
public static class ListHotelsResponseBodyResultHotelInfoList extends TeaModel {
@NameInMap("AccountNames")
public java.util.List<String> accountNames;
/**
* <strong>example:</strong>
* <p>1654568802000</p>
*/
@NameInMap("CreateTime")
public Long createTime;
/**
* <strong>example:</strong>
* <p>酒店地址</p>
*/
@NameInMap("HotelAddress")
public String hotelAddress;
/**
* <strong>example:</strong>
* <p>73ab1b03018d4da69b5bef17095f569b</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>酒店名称</p>
*/
@NameInMap("HotelName")
public String hotelName;
/**
* <strong>example:</strong>
* <p>酒店</p>
*/
@NameInMap("IndustryType")
public String industryType;
/**
* <strong>example:</strong>
* <p>13312340987</p>
*/
@NameInMap("PhoneNumber")
public String phoneNumber;
/**
* <strong>example:</strong>
* <p>测试产品</p>
*/
@NameInMap("RelatedProductName")
public String relatedProductName;
/**
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("RoomNum")
public Integer roomNum;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Status")
public Integer status;
public static ListHotelsResponseBodyResultHotelInfoList build(java.util.Map<String, ?> map) throws Exception {
ListHotelsResponseBodyResultHotelInfoList self = new ListHotelsResponseBodyResultHotelInfoList();
return TeaModel.build(map, self);
}
public ListHotelsResponseBodyResultHotelInfoList setAccountNames(java.util.List<String> accountNames) {
this.accountNames = accountNames;
return this;
}
public java.util.List<String> getAccountNames() {
return this.accountNames;
}
public ListHotelsResponseBodyResultHotelInfoList setCreateTime(Long createTime) {
this.createTime = createTime;
return this;
}
public Long getCreateTime() {
return this.createTime;
}
public ListHotelsResponseBodyResultHotelInfoList setHotelAddress(String hotelAddress) {
this.hotelAddress = hotelAddress;
return this;
}
public String getHotelAddress() {
return this.hotelAddress;
}
public ListHotelsResponseBodyResultHotelInfoList setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelsResponseBodyResultHotelInfoList setHotelName(String hotelName) {
this.hotelName = hotelName;
return this;
}
public String getHotelName() {
return this.hotelName;
}
public ListHotelsResponseBodyResultHotelInfoList setIndustryType(String industryType) {
this.industryType = industryType;
return this;
}
public String getIndustryType() {
return this.industryType;
}
public ListHotelsResponseBodyResultHotelInfoList setPhoneNumber(String phoneNumber) {
this.phoneNumber = phoneNumber;
return this;
}
public String getPhoneNumber() {
return this.phoneNumber;
}
public ListHotelsResponseBodyResultHotelInfoList setRelatedProductName(String relatedProductName) {
this.relatedProductName = relatedProductName;
return this;
}
public String getRelatedProductName() {
return this.relatedProductName;
}
public ListHotelsResponseBodyResultHotelInfoList setRoomNum(Integer roomNum) {
this.roomNum = roomNum;
return this;
}
public Integer getRoomNum() {
return this.roomNum;
}
public ListHotelsResponseBodyResultHotelInfoList setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}
public static class ListHotelsResponseBodyResultPage extends TeaModel {
@NameInMap("HasNext")
public Boolean hasNext;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>23</p>
*/
@NameInMap("Total")
public Integer total;
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("TotalPage")
public Integer totalPage;
public static ListHotelsResponseBodyResultPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelsResponseBodyResultPage self = new ListHotelsResponseBodyResultPage();
return TeaModel.build(map, self);
}
public ListHotelsResponseBodyResultPage setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListHotelsResponseBodyResultPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelsResponseBodyResultPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListHotelsResponseBodyResultPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public ListHotelsResponseBodyResultPage setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Integer getTotalPage() {
return this.totalPage;
}
}
public static class ListHotelsResponseBodyResult extends TeaModel {
@NameInMap("HotelInfoList")
public java.util.List<ListHotelsResponseBodyResultHotelInfoList> hotelInfoList;
@NameInMap("Page")
public ListHotelsResponseBodyResultPage page;
public static ListHotelsResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelsResponseBodyResult self = new ListHotelsResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelsResponseBodyResult setHotelInfoList(java.util.List<ListHotelsResponseBodyResultHotelInfoList> hotelInfoList) {
this.hotelInfoList = hotelInfoList;
return this;
}
public java.util.List<ListHotelsResponseBodyResultHotelInfoList> getHotelInfoList() {
return this.hotelInfoList;
}
public ListHotelsResponseBodyResult setPage(ListHotelsResponseBodyResultPage page) {
this.page = page;
return this;
}
public ListHotelsResponseBodyResultPage getPage() {
return this.page;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListHotelsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelsShrinkRequest extends TeaModel {
/**
* <strong>if can be null:</strong>
* <p>true</p>
*/
@NameInMap("HotelRequest")
public String hotelRequestShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public String pageShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Status")
public Integer status;
public static ListHotelsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelsShrinkRequest self = new ListHotelsShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelsShrinkRequest setHotelRequestShrink(String hotelRequestShrink) {
this.hotelRequestShrink = hotelRequestShrink;
return this;
}
public String getHotelRequestShrink() {
return this.hotelRequestShrink;
}
public ListHotelsShrinkRequest setPageShrink(String pageShrink) {
this.pageShrink = pageShrink;
return this;
}
public String getPageShrink() {
return this.pageShrink;
}
public ListHotelsShrinkRequest setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredDeviceBrandsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredDeviceBrandsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListInfraredDeviceBrandsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListInfraredDeviceBrandsHeaders self = new ListInfraredDeviceBrandsHeaders();
return TeaModel.build(map, self);
}
public ListInfraredDeviceBrandsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListInfraredDeviceBrandsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListInfraredDeviceBrandsHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredDeviceBrandsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredDeviceBrandsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Category")
public String category;
@NameInMap("ServiceProvider")
public String serviceProvider;
public static ListInfraredDeviceBrandsRequest build(java.util.Map<String, ?> map) throws Exception {
ListInfraredDeviceBrandsRequest self = new ListInfraredDeviceBrandsRequest();
return TeaModel.build(map, self);
}
public ListInfraredDeviceBrandsRequest setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListInfraredDeviceBrandsRequest setServiceProvider(String serviceProvider) {
this.serviceProvider = serviceProvider;
return this;
}
public String getServiceProvider() {
return this.serviceProvider;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredDeviceBrandsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredDeviceBrandsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListInfraredDeviceBrandsResponseBody body;
public static ListInfraredDeviceBrandsResponse build(java.util.Map<String, ?> map) throws Exception {
ListInfraredDeviceBrandsResponse self = new ListInfraredDeviceBrandsResponse();
return TeaModel.build(map, self);
}
public ListInfraredDeviceBrandsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListInfraredDeviceBrandsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListInfraredDeviceBrandsResponse setBody(ListInfraredDeviceBrandsResponseBody body) {
this.body = body;
return this;
}
public ListInfraredDeviceBrandsResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredDeviceBrandsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredDeviceBrandsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>860194F7-9593-50EA-8E53-BCEC0D325A00</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.Map<String, java.util.List<String>> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListInfraredDeviceBrandsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListInfraredDeviceBrandsResponseBody self = new ListInfraredDeviceBrandsResponseBody();
return TeaModel.build(map, self);
}
public ListInfraredDeviceBrandsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListInfraredDeviceBrandsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListInfraredDeviceBrandsResponseBody setResult(java.util.Map<String, java.util.List<String>> result) {
this.result = result;
return this;
}
public java.util.Map<String, java.util.List<String>> getResult() {
return this.result;
}
public ListInfraredDeviceBrandsResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredRemoteControllersHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredRemoteControllersHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListInfraredRemoteControllersHeaders build(java.util.Map<String, ?> map) throws Exception {
ListInfraredRemoteControllersHeaders self = new ListInfraredRemoteControllersHeaders();
return TeaModel.build(map, self);
}
public ListInfraredRemoteControllersHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListInfraredRemoteControllersHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListInfraredRemoteControllersHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredRemoteControllersRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredRemoteControllersRequest extends TeaModel {
@NameInMap("Brand")
public String brand;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Category")
public String category;
@NameInMap("City")
public String city;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("Province")
public String province;
@NameInMap("ServiceProvider")
public String serviceProvider;
public static ListInfraredRemoteControllersRequest build(java.util.Map<String, ?> map) throws Exception {
ListInfraredRemoteControllersRequest self = new ListInfraredRemoteControllersRequest();
return TeaModel.build(map, self);
}
public ListInfraredRemoteControllersRequest setBrand(String brand) {
this.brand = brand;
return this;
}
public String getBrand() {
return this.brand;
}
public ListInfraredRemoteControllersRequest setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListInfraredRemoteControllersRequest setCity(String city) {
this.city = city;
return this;
}
public String getCity() {
return this.city;
}
public ListInfraredRemoteControllersRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListInfraredRemoteControllersRequest setProvince(String province) {
this.province = province;
return this;
}
public String getProvince() {
return this.province;
}
public ListInfraredRemoteControllersRequest setServiceProvider(String serviceProvider) {
this.serviceProvider = serviceProvider;
return this;
}
public String getServiceProvider() {
return this.serviceProvider;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredRemoteControllersResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredRemoteControllersResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListInfraredRemoteControllersResponseBody body;
public static ListInfraredRemoteControllersResponse build(java.util.Map<String, ?> map) throws Exception {
ListInfraredRemoteControllersResponse self = new ListInfraredRemoteControllersResponse();
return TeaModel.build(map, self);
}
public ListInfraredRemoteControllersResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListInfraredRemoteControllersResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListInfraredRemoteControllersResponse setBody(ListInfraredRemoteControllersResponseBody body) {
this.body = body;
return this;
}
public ListInfraredRemoteControllersResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListInfraredRemoteControllersResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListInfraredRemoteControllersResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0C90A059-3653-5356-A78E-8A6BDA606155</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListInfraredRemoteControllersResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListInfraredRemoteControllersResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListInfraredRemoteControllersResponseBody self = new ListInfraredRemoteControllersResponseBody();
return TeaModel.build(map, self);
}
public ListInfraredRemoteControllersResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListInfraredRemoteControllersResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListInfraredRemoteControllersResponseBody setResult(java.util.List<ListInfraredRemoteControllersResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListInfraredRemoteControllersResponseBodyResult> getResult() {
return this.result;
}
public ListInfraredRemoteControllersResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class ListInfraredRemoteControllersResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Index")
public Integer index;
/**
* <strong>example:</strong>
* <p>3747</p>
*/
@NameInMap("Rid")
public Long rid;
/**
* <strong>example:</strong>
* <p>4</p>
*/
@NameInMap("Version")
public String version;
public static ListInfraredRemoteControllersResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListInfraredRemoteControllersResponseBodyResult self = new ListInfraredRemoteControllersResponseBodyResult();
return TeaModel.build(map, self);
}
public ListInfraredRemoteControllersResponseBodyResult setIndex(Integer index) {
this.index = index;
return this;
}
public Integer getIndex() {
return this.index;
}
public ListInfraredRemoteControllersResponseBodyResult setRid(Long rid) {
this.rid = rid;
return this;
}
public Long getRid() {
return this.rid;
}
public ListInfraredRemoteControllersResponseBodyResult setVersion(String version) {
this.version = version;
return this;
}
public String getVersion() {
return this.version;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSTBServiceProvidersHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSTBServiceProvidersHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListSTBServiceProvidersHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSTBServiceProvidersHeaders self = new ListSTBServiceProvidersHeaders();
return TeaModel.build(map, self);
}
public ListSTBServiceProvidersHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSTBServiceProvidersHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListSTBServiceProvidersHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSTBServiceProvidersRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSTBServiceProvidersRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("City")
public String city;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Province")
public String province;
public static ListSTBServiceProvidersRequest build(java.util.Map<String, ?> map) throws Exception {
ListSTBServiceProvidersRequest self = new ListSTBServiceProvidersRequest();
return TeaModel.build(map, self);
}
public ListSTBServiceProvidersRequest setCity(String city) {
this.city = city;
return this;
}
public String getCity() {
return this.city;
}
public ListSTBServiceProvidersRequest setProvince(String province) {
this.province = province;
return this;
}
public String getProvince() {
return this.province;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSTBServiceProvidersResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSTBServiceProvidersResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListSTBServiceProvidersResponseBody body;
public static ListSTBServiceProvidersResponse build(java.util.Map<String, ?> map) throws Exception {
ListSTBServiceProvidersResponse self = new ListSTBServiceProvidersResponse();
return TeaModel.build(map, self);
}
public ListSTBServiceProvidersResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListSTBServiceProvidersResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListSTBServiceProvidersResponse setBody(ListSTBServiceProvidersResponseBody body) {
this.body = body;
return this;
}
public ListSTBServiceProvidersResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSTBServiceProvidersResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSTBServiceProvidersResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>1036C376-7A37-5A73-BE8B-C6DB40107EC1</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.Map<String, java.util.List<String>> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListSTBServiceProvidersResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListSTBServiceProvidersResponseBody self = new ListSTBServiceProvidersResponseBody();
return TeaModel.build(map, self);
}
public ListSTBServiceProvidersResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListSTBServiceProvidersResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListSTBServiceProvidersResponseBody setResult(java.util.Map<String, java.util.List<String>> result) {
this.result = result;
return this;
}
public java.util.Map<String, java.util.List<String>> getResult() {
return this.result;
}
public ListSTBServiceProvidersResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSceneCategoryHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSceneCategoryHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListSceneCategoryHeaders build(java.util.Map<String, ?> map) throws Exception {
ListSceneCategoryHeaders self = new ListSceneCategoryHeaders();
return TeaModel.build(map, self);
}
public ListSceneCategoryHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListSceneCategoryHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListSceneCategoryHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSceneCategoryRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSceneCategoryRequest extends TeaModel {
/**
* <p>hotelId</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80d84ea8ed9e422fbad52715c8fc56f1</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>REPAIR</p>
*/
@NameInMap("Type")
public String type;
public static ListSceneCategoryRequest build(java.util.Map<String, ?> map) throws Exception {
ListSceneCategoryRequest self = new ListSceneCategoryRequest();
return TeaModel.build(map, self);
}
public ListSceneCategoryRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListSceneCategoryRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSceneCategoryResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSceneCategoryResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListSceneCategoryResponseBody body;
public static ListSceneCategoryResponse build(java.util.Map<String, ?> map) throws Exception {
ListSceneCategoryResponse self = new ListSceneCategoryResponse();
return TeaModel.build(map, self);
}
public ListSceneCategoryResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListSceneCategoryResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListSceneCategoryResponse setBody(ListSceneCategoryResponseBody body) {
this.body = body;
return this;
}
public ListSceneCategoryResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListSceneCategoryResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListSceneCategoryResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <p>RequestId</p>
*
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<String> result;
public static ListSceneCategoryResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListSceneCategoryResponseBody self = new ListSceneCategoryResponseBody();
return TeaModel.build(map, self);
}
public ListSceneCategoryResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListSceneCategoryResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListSceneCategoryResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListSceneCategoryResponseBody setResult(java.util.List<String> result) {
this.result = result;
return this;
}
public java.util.List<String> getResult() {
return this.result;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListServiceQAHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListServiceQAHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListServiceQAHeaders build(java.util.Map<String, ?> map) throws Exception {
ListServiceQAHeaders self = new ListServiceQAHeaders();
return TeaModel.build(map, self);
}
public ListServiceQAHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListServiceQAHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListServiceQAHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListServiceQARequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListServiceQARequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Active")
public Boolean active;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("Keyword")
public String keyword;
@NameInMap("Page")
public ListServiceQARequestPage page;
public static ListServiceQARequest build(java.util.Map<String, ?> map) throws Exception {
ListServiceQARequest self = new ListServiceQARequest();
return TeaModel.build(map, self);
}
public ListServiceQARequest setActive(Boolean active) {
this.active = active;
return this;
}
public Boolean getActive() {
return this.active;
}
public ListServiceQARequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListServiceQARequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public ListServiceQARequest setPage(ListServiceQARequestPage page) {
this.page = page;
return this;
}
public ListServiceQARequestPage getPage() {
return this.page;
}
public static class ListServiceQARequestPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListServiceQARequestPage build(java.util.Map<String, ?> map) throws Exception {
ListServiceQARequestPage self = new ListServiceQARequestPage();
return TeaModel.build(map, self);
}
public ListServiceQARequestPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListServiceQARequestPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListServiceQAResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListServiceQAResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListServiceQAResponseBody body;
public static ListServiceQAResponse build(java.util.Map<String, ?> map) throws Exception {
ListServiceQAResponse self = new ListServiceQAResponse();
return TeaModel.build(map, self);
}
public ListServiceQAResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListServiceQAResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListServiceQAResponse setBody(ListServiceQAResponseBody body) {
this.body = body;
return this;
}
public ListServiceQAResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListServiceQAResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListServiceQAResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("Page")
public ListServiceQAResponseBodyPage page;
/**
* <strong>example:</strong>
* <p>0EC7***726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListServiceQAResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListServiceQAResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListServiceQAResponseBody self = new ListServiceQAResponseBody();
return TeaModel.build(map, self);
}
public ListServiceQAResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListServiceQAResponseBody setPage(ListServiceQAResponseBodyPage page) {
this.page = page;
return this;
}
public ListServiceQAResponseBodyPage getPage() {
return this.page;
}
public ListServiceQAResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListServiceQAResponseBody setResult(java.util.List<ListServiceQAResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListServiceQAResponseBodyResult> getResult() {
return this.result;
}
public ListServiceQAResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class ListServiceQAResponseBodyPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("Total")
public Integer total;
public static ListServiceQAResponseBodyPage build(java.util.Map<String, ?> map) throws Exception {
ListServiceQAResponseBodyPage self = new ListServiceQAResponseBodyPage();
return TeaModel.build(map, self);
}
public ListServiceQAResponseBodyPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListServiceQAResponseBodyPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListServiceQAResponseBodyPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}
public static class ListServiceQAResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Active")
public Boolean active;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("Answer")
public String answer;
/**
* <strong>example:</strong>
* <p>2022-07-27 14:06:27</p>
*/
@NameInMap("GmtModified")
public String gmtModified;
@NameInMap("Question")
public String question;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("ServiceQAId")
public Long serviceQAId;
@NameInMap("Templates")
public String templates;
public static ListServiceQAResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListServiceQAResponseBodyResult self = new ListServiceQAResponseBodyResult();
return TeaModel.build(map, self);
}
public ListServiceQAResponseBodyResult setActive(Boolean active) {
this.active = active;
return this;
}
public Boolean getActive() {
return this.active;
}
public ListServiceQAResponseBodyResult setAnswer(String answer) {
this.answer = answer;
return this;
}
public String getAnswer() {
return this.answer;
}
public ListServiceQAResponseBodyResult setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
public String getGmtModified() {
return this.gmtModified;
}
public ListServiceQAResponseBodyResult setQuestion(String question) {
this.question = question;
return this;
}
public String getQuestion() {
return this.question;
}
public ListServiceQAResponseBodyResult setServiceQAId(Long serviceQAId) {
this.serviceQAId = serviceQAId;
return this;
}
public Long getServiceQAId() {
return this.serviceQAId;
}
public ListServiceQAResponseBodyResult setTemplates(String templates) {
this.templates = templates;
return this;
}
public String getTemplates() {
return this.templates;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListServiceQAShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListServiceQAShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Active")
public Boolean active;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("Keyword")
public String keyword;
@NameInMap("Page")
public String pageShrink;
public static ListServiceQAShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListServiceQAShrinkRequest self = new ListServiceQAShrinkRequest();
return TeaModel.build(map, self);
}
public ListServiceQAShrinkRequest setActive(Boolean active) {
this.active = active;
return this;
}
public Boolean getActive() {
return this.active;
}
public ListServiceQAShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListServiceQAShrinkRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public ListServiceQAShrinkRequest setPageShrink(String pageShrink) {
this.pageShrink = pageShrink;
return this;
}
public String getPageShrink() {
return this.pageShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListTicketsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListTicketsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static ListTicketsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListTicketsHeaders self = new ListTicketsHeaders();
return TeaModel.build(map, self);
}
public ListTicketsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListTicketsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListTicketsHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListTicketsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListTicketsRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>2022-09-14 14:23:00</p>
*/
@NameInMap("EndTime")
public String endTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IsDesc")
public Boolean isDesc;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsNeedCallback")
public Boolean isNeedCallback;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsNeedCharges")
public Boolean isNeedCharges;
@NameInMap("Page")
public ListTicketsRequestPage page;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <strong>example:</strong>
* <p>gmtCalled</p>
*/
@NameInMap("SortField")
public String sortField;
/**
* <strong>example:</strong>
* <p>2022-04-08 09:39:00</p>
*/
@NameInMap("StartTime")
public String startTime;
/**
* <strong>example:</strong>
* <p>waiting</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>""</p>
*/
@NameInMap("Type")
public String type;
public static ListTicketsRequest build(java.util.Map<String, ?> map) throws Exception {
ListTicketsRequest self = new ListTicketsRequest();
return TeaModel.build(map, self);
}
public ListTicketsRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public ListTicketsRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListTicketsRequest setIsDesc(Boolean isDesc) {
this.isDesc = isDesc;
return this;
}
public Boolean getIsDesc() {
return this.isDesc;
}
public ListTicketsRequest setIsNeedCallback(Boolean isNeedCallback) {
this.isNeedCallback = isNeedCallback;
return this;
}
public Boolean getIsNeedCallback() {
return this.isNeedCallback;
}
public ListTicketsRequest setIsNeedCharges(Boolean isNeedCharges) {
this.isNeedCharges = isNeedCharges;
return this;
}
public Boolean getIsNeedCharges() {
return this.isNeedCharges;
}
public ListTicketsRequest setPage(ListTicketsRequestPage page) {
this.page = page;
return this;
}
public ListTicketsRequestPage getPage() {
return this.page;
}
public ListTicketsRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public ListTicketsRequest setSortField(String sortField) {
this.sortField = sortField;
return this;
}
public String getSortField() {
return this.sortField;
}
public ListTicketsRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
public ListTicketsRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListTicketsRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public static class ListTicketsRequestPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static ListTicketsRequestPage build(java.util.Map<String, ?> map) throws Exception {
ListTicketsRequestPage self = new ListTicketsRequestPage();
return TeaModel.build(map, self);
}
public ListTicketsRequestPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListTicketsRequestPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListTicketsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListTicketsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListTicketsResponseBody body;
public static ListTicketsResponse build(java.util.Map<String, ?> map) throws Exception {
ListTicketsResponse self = new ListTicketsResponse();
return TeaModel.build(map, self);
}
public ListTicketsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListTicketsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListTicketsResponse setBody(ListTicketsResponseBody body) {
this.body = body;
return this;
}
public ListTicketsResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListTicketsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListTicketsResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("Page")
public ListTicketsResponseBodyPage page;
/**
* <strong>example:</strong>
* <p>0EC7***726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListTicketsResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListTicketsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListTicketsResponseBody self = new ListTicketsResponseBody();
return TeaModel.build(map, self);
}
public ListTicketsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListTicketsResponseBody setPage(ListTicketsResponseBodyPage page) {
this.page = page;
return this;
}
public ListTicketsResponseBodyPage getPage() {
return this.page;
}
public ListTicketsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListTicketsResponseBody setResult(java.util.List<ListTicketsResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListTicketsResponseBodyResult> getResult() {
return this.result;
}
public ListTicketsResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class ListTicketsResponseBodyPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>5</p>
*/
@NameInMap("Total")
public Integer total;
public static ListTicketsResponseBodyPage build(java.util.Map<String, ?> map) throws Exception {
ListTicketsResponseBodyPage self = new ListTicketsResponseBodyPage();
return TeaModel.build(map, self);
}
public ListTicketsResponseBodyPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListTicketsResponseBodyPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListTicketsResponseBodyPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}
public static class ListTicketsResponseBodyResultDialogs extends TeaModel {
@NameInMap("Answer")
public String answer;
@NameInMap("Question")
public String question;
public static ListTicketsResponseBodyResultDialogs build(java.util.Map<String, ?> map) throws Exception {
ListTicketsResponseBodyResultDialogs self = new ListTicketsResponseBodyResultDialogs();
return TeaModel.build(map, self);
}
public ListTicketsResponseBodyResultDialogs setAnswer(String answer) {
this.answer = answer;
return this;
}
public String getAnswer() {
return this.answer;
}
public ListTicketsResponseBodyResultDialogs setQuestion(String question) {
this.question = question;
return this;
}
public String getQuestion() {
return this.question;
}
}
public static class ListTicketsResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("Action")
public Boolean action;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("AssignedHandler")
public String assignedHandler;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("ChargesRemark")
public String chargesRemark;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("CompleteRemark")
public String completeRemark;
@NameInMap("Dialogs")
public java.util.List<ListTicketsResponseBodyResultDialogs> dialogs;
/**
* <strong>example:</strong>
* <p>2023-01-09 00:00:00</p>
*/
@NameInMap("GmtCalled")
public String gmtCalled;
/**
* <strong>example:</strong>
* <p>2023-01-09 00:00:00</p>
*/
@NameInMap("GmtCreate")
public String gmtCreate;
/**
* <strong>example:</strong>
* <p>2023-01-09 00:00:00</p>
*/
@NameInMap("GmtDelayed")
public String gmtDelayed;
/**
* <strong>example:</strong>
* <p>2023-01-09 00:00:00</p>
*/
@NameInMap("GmtModified")
public String gmtModified;
/**
* <strong>example:</strong>
* <p>2023***93975</p>
*/
@NameInMap("GroupKey")
public String groupKey;
/**
* <strong>example:</strong>
* <p>45</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsAcceptedCharges")
public Boolean isAcceptedCharges;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IsDelayed")
public Boolean isDelayed;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsNeedCallback")
public Boolean isNeedCallback;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsNeedCharges")
public Boolean isNeedCharges;
@NameInMap("Operations")
public java.util.List<java.util.Map<String, ?>> operations;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("Remark")
public String remark;
/**
* <strong>example:</strong>
* <p>101</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <strong>example:</strong>
* <p>waiting</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>""</p>
*/
@NameInMap("Type")
public String type;
public static ListTicketsResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListTicketsResponseBodyResult self = new ListTicketsResponseBodyResult();
return TeaModel.build(map, self);
}
public ListTicketsResponseBodyResult setAction(Boolean action) {
this.action = action;
return this;
}
public Boolean getAction() {
return this.action;
}
public ListTicketsResponseBodyResult setAssignedHandler(String assignedHandler) {
this.assignedHandler = assignedHandler;
return this;
}
public String getAssignedHandler() {
return this.assignedHandler;
}
public ListTicketsResponseBodyResult setChargesRemark(String chargesRemark) {
this.chargesRemark = chargesRemark;
return this;
}
public String getChargesRemark() {
return this.chargesRemark;
}
public ListTicketsResponseBodyResult setCompleteRemark(String completeRemark) {
this.completeRemark = completeRemark;
return this;
}
public String getCompleteRemark() {
return this.completeRemark;
}
public ListTicketsResponseBodyResult setDialogs(java.util.List<ListTicketsResponseBodyResultDialogs> dialogs) {
this.dialogs = dialogs;
return this;
}
public java.util.List<ListTicketsResponseBodyResultDialogs> getDialogs() {
return this.dialogs;
}
public ListTicketsResponseBodyResult setGmtCalled(String gmtCalled) {
this.gmtCalled = gmtCalled;
return this;
}
public String getGmtCalled() {
return this.gmtCalled;
}
public ListTicketsResponseBodyResult setGmtCreate(String gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public String getGmtCreate() {
return this.gmtCreate;
}
public ListTicketsResponseBodyResult setGmtDelayed(String gmtDelayed) {
this.gmtDelayed = gmtDelayed;
return this;
}
public String getGmtDelayed() {
return this.gmtDelayed;
}
public ListTicketsResponseBodyResult setGmtModified(String gmtModified) {
this.gmtModified = gmtModified;
return this;
}
public String getGmtModified() {
return this.gmtModified;
}
public ListTicketsResponseBodyResult setGroupKey(String groupKey) {
this.groupKey = groupKey;
return this;
}
public String getGroupKey() {
return this.groupKey;
}
public ListTicketsResponseBodyResult setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListTicketsResponseBodyResult setIsAcceptedCharges(Boolean isAcceptedCharges) {
this.isAcceptedCharges = isAcceptedCharges;
return this;
}
public Boolean getIsAcceptedCharges() {
return this.isAcceptedCharges;
}
public ListTicketsResponseBodyResult setIsDelayed(Boolean isDelayed) {
this.isDelayed = isDelayed;
return this;
}
public Boolean getIsDelayed() {
return this.isDelayed;
}
public ListTicketsResponseBodyResult setIsNeedCallback(Boolean isNeedCallback) {
this.isNeedCallback = isNeedCallback;
return this;
}
public Boolean getIsNeedCallback() {
return this.isNeedCallback;
}
public ListTicketsResponseBodyResult setIsNeedCharges(Boolean isNeedCharges) {
this.isNeedCharges = isNeedCharges;
return this;
}
public Boolean getIsNeedCharges() {
return this.isNeedCharges;
}
public ListTicketsResponseBodyResult setOperations(java.util.List<java.util.Map<String, ?>> operations) {
this.operations = operations;
return this;
}
public java.util.List<java.util.Map<String, ?>> getOperations() {
return this.operations;
}
public ListTicketsResponseBodyResult setRemark(String remark) {
this.remark = remark;
return this;
}
public String getRemark() {
return this.remark;
}
public ListTicketsResponseBodyResult setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public ListTicketsResponseBodyResult setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListTicketsResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/ListTicketsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListTicketsShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>2022-09-14 14:23:00</p>
*/
@NameInMap("EndTime")
public String endTime;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("IsDesc")
public Boolean isDesc;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsNeedCallback")
public Boolean isNeedCallback;
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("IsNeedCharges")
public Boolean isNeedCharges;
@NameInMap("Page")
public String pageShrink;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <strong>example:</strong>
* <p>gmtCalled</p>
*/
@NameInMap("SortField")
public String sortField;
/**
* <strong>example:</strong>
* <p>2022-04-08 09:39:00</p>
*/
@NameInMap("StartTime")
public String startTime;
/**
* <strong>example:</strong>
* <p>waiting</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>""</p>
*/
@NameInMap("Type")
public String type;
public static ListTicketsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListTicketsShrinkRequest self = new ListTicketsShrinkRequest();
return TeaModel.build(map, self);
}
public ListTicketsShrinkRequest setEndTime(String endTime) {
this.endTime = endTime;
return this;
}
public String getEndTime() {
return this.endTime;
}
public ListTicketsShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListTicketsShrinkRequest setIsDesc(Boolean isDesc) {
this.isDesc = isDesc;
return this;
}
public Boolean getIsDesc() {
return this.isDesc;
}
public ListTicketsShrinkRequest setIsNeedCallback(Boolean isNeedCallback) {
this.isNeedCallback = isNeedCallback;
return this;
}
public Boolean getIsNeedCallback() {
return this.isNeedCallback;
}
public ListTicketsShrinkRequest setIsNeedCharges(Boolean isNeedCharges) {
this.isNeedCharges = isNeedCharges;
return this;
}
public Boolean getIsNeedCharges() {
return this.isNeedCharges;
}
public ListTicketsShrinkRequest setPageShrink(String pageShrink) {
this.pageShrink = pageShrink;
return this;
}
public String getPageShrink() {
return this.pageShrink;
}
public ListTicketsShrinkRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public ListTicketsShrinkRequest setSortField(String sortField) {
this.sortField = sortField;
return this;
}
public String getSortField() {
return this.sortField;
}
public ListTicketsShrinkRequest setStartTime(String startTime) {
this.startTime = startTime;
return this;
}
public String getStartTime() {
return this.startTime;
}
public ListTicketsShrinkRequest setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListTicketsShrinkRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PageGetHotelRoomDevicesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PageGetHotelRoomDevicesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PageGetHotelRoomDevicesHeaders build(java.util.Map<String, ?> map) throws Exception {
PageGetHotelRoomDevicesHeaders self = new PageGetHotelRoomDevicesHeaders();
return TeaModel.build(map, self);
}
public PageGetHotelRoomDevicesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PageGetHotelRoomDevicesHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PageGetHotelRoomDevicesHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PageGetHotelRoomDevicesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PageGetHotelRoomDevicesRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
public static PageGetHotelRoomDevicesRequest build(java.util.Map<String, ?> map) throws Exception {
PageGetHotelRoomDevicesRequest self = new PageGetHotelRoomDevicesRequest();
return TeaModel.build(map, self);
}
public PageGetHotelRoomDevicesRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PageGetHotelRoomDevicesRequest setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public PageGetHotelRoomDevicesRequest setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PageGetHotelRoomDevicesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PageGetHotelRoomDevicesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PageGetHotelRoomDevicesResponseBody body;
public static PageGetHotelRoomDevicesResponse build(java.util.Map<String, ?> map) throws Exception {
PageGetHotelRoomDevicesResponse self = new PageGetHotelRoomDevicesResponse();
return TeaModel.build(map, self);
}
public PageGetHotelRoomDevicesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PageGetHotelRoomDevicesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PageGetHotelRoomDevicesResponse setBody(PageGetHotelRoomDevicesResponseBody body) {
this.body = body;
return this;
}
public PageGetHotelRoomDevicesResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PageGetHotelRoomDevicesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PageGetHotelRoomDevicesResponseBody extends TeaModel {
@NameInMap("Extentions")
public java.util.Map<String, ?> extentions;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("Page")
public PageGetHotelRoomDevicesResponseBodyPage page;
/**
* <strong>example:</strong>
* <p>4EFBDDF4-B19D-526C-8C3D-CD8AB51974EE</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<PageGetHotelRoomDevicesResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static PageGetHotelRoomDevicesResponseBody build(java.util.Map<String, ?> map) throws Exception {
PageGetHotelRoomDevicesResponseBody self = new PageGetHotelRoomDevicesResponseBody();
return TeaModel.build(map, self);
}
public PageGetHotelRoomDevicesResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public PageGetHotelRoomDevicesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PageGetHotelRoomDevicesResponseBody setPage(PageGetHotelRoomDevicesResponseBodyPage page) {
this.page = page;
return this;
}
public PageGetHotelRoomDevicesResponseBodyPage getPage() {
return this.page;
}
public PageGetHotelRoomDevicesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PageGetHotelRoomDevicesResponseBody setResult(java.util.List<PageGetHotelRoomDevicesResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<PageGetHotelRoomDevicesResponseBodyResult> getResult() {
return this.result;
}
public PageGetHotelRoomDevicesResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class PageGetHotelRoomDevicesResponseBodyPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>4</p>
*/
@NameInMap("End")
public Integer end;
/**
* <strong>example:</strong>
* <p>False</p>
*/
@NameInMap("HasNext")
public Boolean hasNext;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Integer pageNumber;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Integer pageSize;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Start")
public Integer start;
/**
* <strong>example:</strong>
* <p>5</p>
*/
@NameInMap("Total")
public Integer total;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("TotalPage")
public Integer totalPage;
public static PageGetHotelRoomDevicesResponseBodyPage build(java.util.Map<String, ?> map) throws Exception {
PageGetHotelRoomDevicesResponseBodyPage self = new PageGetHotelRoomDevicesResponseBodyPage();
return TeaModel.build(map, self);
}
public PageGetHotelRoomDevicesResponseBodyPage setEnd(Integer end) {
this.end = end;
return this;
}
public Integer getEnd() {
return this.end;
}
public PageGetHotelRoomDevicesResponseBodyPage setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public PageGetHotelRoomDevicesResponseBodyPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public PageGetHotelRoomDevicesResponseBodyPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public PageGetHotelRoomDevicesResponseBodyPage setStart(Integer start) {
this.start = start;
return this;
}
public Integer getStart() {
return this.start;
}
public PageGetHotelRoomDevicesResponseBodyPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public PageGetHotelRoomDevicesResponseBodyPage setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Integer getTotalPage() {
return this.totalPage;
}
}
public static class PageGetHotelRoomDevicesResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>V21.10.00.313</p>
*/
@NameInMap("FirmwareVersion")
public String firmwareVersion;
/**
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>b4:xx:xx:xx:65:2b</p>
*/
@NameInMap("Mac")
public String mac;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("OnlineStatus")
public Integer onlineStatus;
/**
* <strong>example:</strong>
* <p>2001</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <strong>example:</strong>
* <p>1200xxx048</p>
*/
@NameInMap("Sn")
public String sn;
public static PageGetHotelRoomDevicesResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
PageGetHotelRoomDevicesResponseBodyResult self = new PageGetHotelRoomDevicesResponseBodyResult();
return TeaModel.build(map, self);
}
public PageGetHotelRoomDevicesResponseBodyResult setFirmwareVersion(String firmwareVersion) {
this.firmwareVersion = firmwareVersion;
return this;
}
public String getFirmwareVersion() {
return this.firmwareVersion;
}
public PageGetHotelRoomDevicesResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PageGetHotelRoomDevicesResponseBodyResult setMac(String mac) {
this.mac = mac;
return this;
}
public String getMac() {
return this.mac;
}
public PageGetHotelRoomDevicesResponseBodyResult setOnlineStatus(Integer onlineStatus) {
this.onlineStatus = onlineStatus;
return this;
}
public Integer getOnlineStatus() {
return this.onlineStatus;
}
public PageGetHotelRoomDevicesResponseBodyResult setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public PageGetHotelRoomDevicesResponseBodyResult setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PmsEventReportHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PmsEventReportHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PmsEventReportHeaders build(java.util.Map<String, ?> map) throws Exception {
PmsEventReportHeaders self = new PmsEventReportHeaders();
return TeaModel.build(map, self);
}
public PmsEventReportHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PmsEventReportHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PmsEventReportHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PmsEventReportRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PmsEventReportRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public String payload;
public static PmsEventReportRequest build(java.util.Map<String, ?> map) throws Exception {
PmsEventReportRequest self = new PmsEventReportRequest();
return TeaModel.build(map, self);
}
public PmsEventReportRequest setPayload(String payload) {
this.payload = payload;
return this;
}
public String getPayload() {
return this.payload;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PmsEventReportResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PmsEventReportResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PmsEventReportResponseBody body;
public static PmsEventReportResponse build(java.util.Map<String, ?> map) throws Exception {
PmsEventReportResponse self = new PmsEventReportResponse();
return TeaModel.build(map, self);
}
public PmsEventReportResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PmsEventReportResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PmsEventReportResponse setBody(PmsEventReportResponseBody body) {
this.body = body;
return this;
}
public PmsEventReportResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PmsEventReportResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PmsEventReportResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Result")
public Boolean result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static PmsEventReportResponseBody build(java.util.Map<String, ?> map) throws Exception {
PmsEventReportResponseBody self = new PmsEventReportResponseBody();
return TeaModel.build(map, self);
}
public PmsEventReportResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PmsEventReportResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PmsEventReportResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public PmsEventReportResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushHotelMessageHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushHotelMessageHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PushHotelMessageHeaders build(java.util.Map<String, ?> map) throws Exception {
PushHotelMessageHeaders self = new PushHotelMessageHeaders();
return TeaModel.build(map, self);
}
public PushHotelMessageHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PushHotelMessageHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PushHotelMessageHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushHotelMessageRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushHotelMessageRequest extends TeaModel {
/**
* <p>pushHotelMessageReq</p>
* <p>This parameter is required.</p>
*/
@NameInMap("PushHotelMessageReq")
public PushHotelMessageRequestPushHotelMessageReq pushHotelMessageReq;
public static PushHotelMessageRequest build(java.util.Map<String, ?> map) throws Exception {
PushHotelMessageRequest self = new PushHotelMessageRequest();
return TeaModel.build(map, self);
}
public PushHotelMessageRequest setPushHotelMessageReq(PushHotelMessageRequestPushHotelMessageReq pushHotelMessageReq) {
this.pushHotelMessageReq = pushHotelMessageReq;
return this;
}
public PushHotelMessageRequestPushHotelMessageReq getPushHotelMessageReq() {
return this.pushHotelMessageReq;
}
public static class PushHotelMessageRequestPushHotelMessageReq extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>e6dd44fd16084db8a60d69fd625d9f0f</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("ParamMap")
public java.util.Map<String, String> paramMap;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>102</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("TemplateId")
public Long templateId;
public static PushHotelMessageRequestPushHotelMessageReq build(java.util.Map<String, ?> map) throws Exception {
PushHotelMessageRequestPushHotelMessageReq self = new PushHotelMessageRequestPushHotelMessageReq();
return TeaModel.build(map, self);
}
public PushHotelMessageRequestPushHotelMessageReq setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PushHotelMessageRequestPushHotelMessageReq setParamMap(java.util.Map<String, String> paramMap) {
this.paramMap = paramMap;
return this;
}
public java.util.Map<String, String> getParamMap() {
return this.paramMap;
}
public PushHotelMessageRequestPushHotelMessageReq setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public PushHotelMessageRequestPushHotelMessageReq setTemplateId(Long templateId) {
this.templateId = templateId;
return this;
}
public Long getTemplateId() {
return this.templateId;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushHotelMessageResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushHotelMessageResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PushHotelMessageResponseBody body;
public static PushHotelMessageResponse build(java.util.Map<String, ?> map) throws Exception {
PushHotelMessageResponse self = new PushHotelMessageResponse();
return TeaModel.build(map, self);
}
public PushHotelMessageResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PushHotelMessageResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PushHotelMessageResponse setBody(PushHotelMessageResponseBody body) {
this.body = body;
return this;
}
public PushHotelMessageResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushHotelMessageResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushHotelMessageResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public Boolean result;
public static PushHotelMessageResponseBody build(java.util.Map<String, ?> map) throws Exception {
PushHotelMessageResponseBody self = new PushHotelMessageResponseBody();
return TeaModel.build(map, self);
}
public PushHotelMessageResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public PushHotelMessageResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PushHotelMessageResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PushHotelMessageResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushHotelMessageShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushHotelMessageShrinkRequest extends TeaModel {
/**
* <p>pushHotelMessageReq</p>
* <p>This parameter is required.</p>
*/
@NameInMap("PushHotelMessageReq")
public String pushHotelMessageReqShrink;
public static PushHotelMessageShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
PushHotelMessageShrinkRequest self = new PushHotelMessageShrinkRequest();
return TeaModel.build(map, self);
}
public PushHotelMessageShrinkRequest setPushHotelMessageReqShrink(String pushHotelMessageReqShrink) {
this.pushHotelMessageReqShrink = pushHotelMessageReqShrink;
return this;
}
public String getPushHotelMessageReqShrink() {
return this.pushHotelMessageReqShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushVoiceBoxCommandsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushVoiceBoxCommandsHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PushVoiceBoxCommandsHeaders build(java.util.Map<String, ?> map) throws Exception {
PushVoiceBoxCommandsHeaders self = new PushVoiceBoxCommandsHeaders();
return TeaModel.build(map, self);
}
public PushVoiceBoxCommandsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PushVoiceBoxCommandsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PushVoiceBoxCommandsHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushVoiceBoxCommandsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushVoiceBoxCommandsRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Commands")
public java.util.List<PushVoiceBoxCommandsRequestCommands> commands;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static PushVoiceBoxCommandsRequest build(java.util.Map<String, ?> map) throws Exception {
PushVoiceBoxCommandsRequest self = new PushVoiceBoxCommandsRequest();
return TeaModel.build(map, self);
}
public PushVoiceBoxCommandsRequest setCommands(java.util.List<PushVoiceBoxCommandsRequestCommands> commands) {
this.commands = commands;
return this;
}
public java.util.List<PushVoiceBoxCommandsRequestCommands> getCommands() {
return this.commands;
}
public PushVoiceBoxCommandsRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PushVoiceBoxCommandsRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public static class PushVoiceBoxCommandsRequestCommands extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("CommandDomain")
public String commandDomain;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("CommandName")
public String commandName;
@NameInMap("Payload")
public String payload;
public static PushVoiceBoxCommandsRequestCommands build(java.util.Map<String, ?> map) throws Exception {
PushVoiceBoxCommandsRequestCommands self = new PushVoiceBoxCommandsRequestCommands();
return TeaModel.build(map, self);
}
public PushVoiceBoxCommandsRequestCommands setCommandDomain(String commandDomain) {
this.commandDomain = commandDomain;
return this;
}
public String getCommandDomain() {
return this.commandDomain;
}
public PushVoiceBoxCommandsRequestCommands setCommandName(String commandName) {
this.commandName = commandName;
return this;
}
public String getCommandName() {
return this.commandName;
}
public PushVoiceBoxCommandsRequestCommands setPayload(String payload) {
this.payload = payload;
return this;
}
public String getPayload() {
return this.payload;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushVoiceBoxCommandsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushVoiceBoxCommandsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PushVoiceBoxCommandsResponseBody body;
public static PushVoiceBoxCommandsResponse build(java.util.Map<String, ?> map) throws Exception {
PushVoiceBoxCommandsResponse self = new PushVoiceBoxCommandsResponse();
return TeaModel.build(map, self);
}
public PushVoiceBoxCommandsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PushVoiceBoxCommandsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PushVoiceBoxCommandsResponse setBody(PushVoiceBoxCommandsResponseBody body) {
this.body = body;
return this;
}
public PushVoiceBoxCommandsResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushVoiceBoxCommandsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushVoiceBoxCommandsResponseBody extends TeaModel {
@NameInMap("Code")
public Integer code;
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public Boolean result;
@NameInMap("StatusCode")
public Integer statusCode;
public static PushVoiceBoxCommandsResponseBody build(java.util.Map<String, ?> map) throws Exception {
PushVoiceBoxCommandsResponseBody self = new PushVoiceBoxCommandsResponseBody();
return TeaModel.build(map, self);
}
public PushVoiceBoxCommandsResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public PushVoiceBoxCommandsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PushVoiceBoxCommandsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PushVoiceBoxCommandsResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public PushVoiceBoxCommandsResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushVoiceBoxCommandsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushVoiceBoxCommandsShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Commands")
public String commandsShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static PushVoiceBoxCommandsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
PushVoiceBoxCommandsShrinkRequest self = new PushVoiceBoxCommandsShrinkRequest();
return TeaModel.build(map, self);
}
public PushVoiceBoxCommandsShrinkRequest setCommandsShrink(String commandsShrink) {
this.commandsShrink = commandsShrink;
return this;
}
public String getCommandsShrink() {
return this.commandsShrink;
}
public PushVoiceBoxCommandsShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PushVoiceBoxCommandsShrinkRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PushWelcomeHeaders build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeHeaders self = new PushWelcomeHeaders();
return TeaModel.build(map, self);
}
public PushWelcomeHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PushWelcomeHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PushWelcomeHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("RoomName")
public String roomName;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <strong>example:</strong>
* <p><a href="http://ailabsaicloudservice.alicdn.com/tmp/a.wav">http://ailabsaicloudservice.alicdn.com/tmp/a.wav</a></p>
*/
@NameInMap("WelcomeMusicUrl")
public String welcomeMusicUrl;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("WelcomeText")
public String welcomeText;
public static PushWelcomeRequest build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeRequest self = new PushWelcomeRequest();
return TeaModel.build(map, self);
}
public PushWelcomeRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PushWelcomeRequest setRoomName(String roomName) {
this.roomName = roomName;
return this;
}
public String getRoomName() {
return this.roomName;
}
public PushWelcomeRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public PushWelcomeRequest setWelcomeMusicUrl(String welcomeMusicUrl) {
this.welcomeMusicUrl = welcomeMusicUrl;
return this;
}
public String getWelcomeMusicUrl() {
return this.welcomeMusicUrl;
}
public PushWelcomeRequest setWelcomeText(String welcomeText) {
this.welcomeText = welcomeText;
return this;
}
public String getWelcomeText() {
return this.welcomeText;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PushWelcomeResponseBody body;
public static PushWelcomeResponse build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeResponse self = new PushWelcomeResponse();
return TeaModel.build(map, self);
}
public PushWelcomeResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PushWelcomeResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PushWelcomeResponse setBody(PushWelcomeResponseBody body) {
this.body = body;
return this;
}
public PushWelcomeResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Result")
public Boolean result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static PushWelcomeResponseBody build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeResponseBody self = new PushWelcomeResponseBody();
return TeaModel.build(map, self);
}
public PushWelcomeResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PushWelcomeResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PushWelcomeResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public PushWelcomeResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeTextAndMusicHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeTextAndMusicHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static PushWelcomeTextAndMusicHeaders build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeTextAndMusicHeaders self = new PushWelcomeTextAndMusicHeaders();
return TeaModel.build(map, self);
}
public PushWelcomeTextAndMusicHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public PushWelcomeTextAndMusicHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public PushWelcomeTextAndMusicHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeTextAndMusicRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeTextAndMusicRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("RoomName")
public String roomName;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("TemplateVariable")
public java.util.Map<String, String> templateVariable;
public static PushWelcomeTextAndMusicRequest build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeTextAndMusicRequest self = new PushWelcomeTextAndMusicRequest();
return TeaModel.build(map, self);
}
public PushWelcomeTextAndMusicRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PushWelcomeTextAndMusicRequest setRoomName(String roomName) {
this.roomName = roomName;
return this;
}
public String getRoomName() {
return this.roomName;
}
public PushWelcomeTextAndMusicRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public PushWelcomeTextAndMusicRequest setTemplateVariable(java.util.Map<String, String> templateVariable) {
this.templateVariable = templateVariable;
return this;
}
public java.util.Map<String, String> getTemplateVariable() {
return this.templateVariable;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeTextAndMusicResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeTextAndMusicResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public PushWelcomeTextAndMusicResponseBody body;
public static PushWelcomeTextAndMusicResponse build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeTextAndMusicResponse self = new PushWelcomeTextAndMusicResponse();
return TeaModel.build(map, self);
}
public PushWelcomeTextAndMusicResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public PushWelcomeTextAndMusicResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public PushWelcomeTextAndMusicResponse setBody(PushWelcomeTextAndMusicResponseBody body) {
this.body = body;
return this;
}
public PushWelcomeTextAndMusicResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeTextAndMusicResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeTextAndMusicResponseBody extends TeaModel {
@NameInMap("Extentions")
public java.util.Map<String, ?> extentions;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F7E2****B7C94</p>
*/
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Result")
public Boolean result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static PushWelcomeTextAndMusicResponseBody build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeTextAndMusicResponseBody self = new PushWelcomeTextAndMusicResponseBody();
return TeaModel.build(map, self);
}
public PushWelcomeTextAndMusicResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public PushWelcomeTextAndMusicResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public PushWelcomeTextAndMusicResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public PushWelcomeTextAndMusicResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public PushWelcomeTextAndMusicResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/PushWelcomeTextAndMusicShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class PushWelcomeTextAndMusicShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("RoomName")
public String roomName;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("TemplateVariable")
public String templateVariableShrink;
public static PushWelcomeTextAndMusicShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
PushWelcomeTextAndMusicShrinkRequest self = new PushWelcomeTextAndMusicShrinkRequest();
return TeaModel.build(map, self);
}
public PushWelcomeTextAndMusicShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public PushWelcomeTextAndMusicShrinkRequest setRoomName(String roomName) {
this.roomName = roomName;
return this;
}
public String getRoomName() {
return this.roomName;
}
public PushWelcomeTextAndMusicShrinkRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public PushWelcomeTextAndMusicShrinkRequest setTemplateVariableShrink(String templateVariableShrink) {
this.templateVariableShrink = templateVariableShrink;
return this;
}
public String getTemplateVariableShrink() {
return this.templateVariableShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryDeviceStatusHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryDeviceStatusHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static QueryDeviceStatusHeaders build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusHeaders self = new QueryDeviceStatusHeaders();
return TeaModel.build(map, self);
}
public QueryDeviceStatusHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public QueryDeviceStatusHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public QueryDeviceStatusHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryDeviceStatusRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryDeviceStatusRequest extends TeaModel {
@NameInMap("Payload")
public QueryDeviceStatusRequestPayload payload;
@NameInMap("UserInfo")
public QueryDeviceStatusRequestUserInfo userInfo;
public static QueryDeviceStatusRequest build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusRequest self = new QueryDeviceStatusRequest();
return TeaModel.build(map, self);
}
public QueryDeviceStatusRequest setPayload(QueryDeviceStatusRequestPayload payload) {
this.payload = payload;
return this;
}
public QueryDeviceStatusRequestPayload getPayload() {
return this.payload;
}
public QueryDeviceStatusRequest setUserInfo(QueryDeviceStatusRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public QueryDeviceStatusRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class QueryDeviceStatusRequestPayloadLocationDevices extends TeaModel {
/**
* <strong>example:</strong>
* <p>night_light</p>
*/
@NameInMap("DeviceNumber")
public String deviceNumber;
/**
* <strong>example:</strong>
* <p>light</p>
*/
@NameInMap("DeviceType")
public String deviceType;
/**
* <strong>example:</strong>
* <p>room</p>
*/
@NameInMap("Location")
public String location;
public static QueryDeviceStatusRequestPayloadLocationDevices build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusRequestPayloadLocationDevices self = new QueryDeviceStatusRequestPayloadLocationDevices();
return TeaModel.build(map, self);
}
public QueryDeviceStatusRequestPayloadLocationDevices setDeviceNumber(String deviceNumber) {
this.deviceNumber = deviceNumber;
return this;
}
public String getDeviceNumber() {
return this.deviceNumber;
}
public QueryDeviceStatusRequestPayloadLocationDevices setDeviceType(String deviceType) {
this.deviceType = deviceType;
return this;
}
public String getDeviceType() {
return this.deviceType;
}
public QueryDeviceStatusRequestPayloadLocationDevices setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
}
public static class QueryDeviceStatusRequestPayload extends TeaModel {
@NameInMap("LocationDevices")
public java.util.List<QueryDeviceStatusRequestPayloadLocationDevices> locationDevices;
@NameInMap("Properties")
public java.util.Map<String, String> properties;
public static QueryDeviceStatusRequestPayload build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusRequestPayload self = new QueryDeviceStatusRequestPayload();
return TeaModel.build(map, self);
}
public QueryDeviceStatusRequestPayload setLocationDevices(java.util.List<QueryDeviceStatusRequestPayloadLocationDevices> locationDevices) {
this.locationDevices = locationDevices;
return this;
}
public java.util.List<QueryDeviceStatusRequestPayloadLocationDevices> getLocationDevices() {
return this.locationDevices;
}
public QueryDeviceStatusRequestPayload setProperties(java.util.Map<String, String> properties) {
this.properties = properties;
return this;
}
public java.util.Map<String, String> getProperties() {
return this.properties;
}
}
public static class QueryDeviceStatusRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>HOTEL</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>rV/XSgPuxZjx/hN3iw8U+e8ou***lk1r43LWcVW6fvY1Rr4sEPFodpnA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static QueryDeviceStatusRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusRequestUserInfo self = new QueryDeviceStatusRequestUserInfo();
return TeaModel.build(map, self);
}
public QueryDeviceStatusRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public QueryDeviceStatusRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public QueryDeviceStatusRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public QueryDeviceStatusRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public QueryDeviceStatusRequestUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryDeviceStatusResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryDeviceStatusResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public QueryDeviceStatusResponseBody body;
public static QueryDeviceStatusResponse build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusResponse self = new QueryDeviceStatusResponse();
return TeaModel.build(map, self);
}
public QueryDeviceStatusResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public QueryDeviceStatusResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public QueryDeviceStatusResponse setBody(QueryDeviceStatusResponseBody body) {
this.body = body;
return this;
}
public QueryDeviceStatusResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryDeviceStatusResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryDeviceStatusResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>fdsgrefds</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<java.util.Map<String, String>> result;
public static QueryDeviceStatusResponseBody build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusResponseBody self = new QueryDeviceStatusResponseBody();
return TeaModel.build(map, self);
}
public QueryDeviceStatusResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public QueryDeviceStatusResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryDeviceStatusResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryDeviceStatusResponseBody setResult(java.util.List<java.util.Map<String, String>> result) {
this.result = result;
return this;
}
public java.util.List<java.util.Map<String, String>> getResult() {
return this.result;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryDeviceStatusShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryDeviceStatusShrinkRequest extends TeaModel {
@NameInMap("Payload")
public String payloadShrink;
@NameInMap("UserInfo")
public String userInfoShrink;
public static QueryDeviceStatusShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
QueryDeviceStatusShrinkRequest self = new QueryDeviceStatusShrinkRequest();
return TeaModel.build(map, self);
}
public QueryDeviceStatusShrinkRequest setPayloadShrink(String payloadShrink) {
this.payloadShrink = payloadShrink;
return this;
}
public String getPayloadShrink() {
return this.payloadShrink;
}
public QueryDeviceStatusShrinkRequest setUserInfoShrink(String userInfoShrink) {
this.userInfoShrink = userInfoShrink;
return this;
}
public String getUserInfoShrink() {
return this.userInfoShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryHotelRoomDetailHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryHotelRoomDetailHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static QueryHotelRoomDetailHeaders build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailHeaders self = new QueryHotelRoomDetailHeaders();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public QueryHotelRoomDetailHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public QueryHotelRoomDetailHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryHotelRoomDetailRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryHotelRoomDetailRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>520a0c0***5eb</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>38:c8:<strong>:</strong>:f5:22</p>
*/
@NameInMap("Mac")
public String mac;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
/**
* <p>设备sn信息
* 注:若在mac uuid sn全都输入的情况下 按照输入正确的内容查询 若全输入都是正确的 则 按照 uuid > mac > sn 优先级查询
* 传入mac uuid sn其中一个 则酒店id和房间号可不传</p>
*
* <strong>example:</strong>
* <p>280**28</p>
*/
@NameInMap("Sn")
public String sn;
/**
* <strong>example:</strong>
* <p>588***96j5WU</p>
*/
@NameInMap("Uuid")
public String uuid;
public static QueryHotelRoomDetailRequest build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailRequest self = new QueryHotelRoomDetailRequest();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QueryHotelRoomDetailRequest setMac(String mac) {
this.mac = mac;
return this;
}
public String getMac() {
return this.mac;
}
public QueryHotelRoomDetailRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public QueryHotelRoomDetailRequest setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public QueryHotelRoomDetailRequest setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryHotelRoomDetailResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryHotelRoomDetailResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public QueryHotelRoomDetailResponseBody body;
public static QueryHotelRoomDetailResponse build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponse self = new QueryHotelRoomDetailResponse();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public QueryHotelRoomDetailResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public QueryHotelRoomDetailResponse setBody(QueryHotelRoomDetailResponseBody body) {
this.body = body;
return this;
}
public QueryHotelRoomDetailResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryHotelRoomDetailResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryHotelRoomDetailResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public QueryHotelRoomDetailResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static QueryHotelRoomDetailResponseBody build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBody self = new QueryHotelRoomDetailResponseBody();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryHotelRoomDetailResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryHotelRoomDetailResponseBody setResult(QueryHotelRoomDetailResponseBodyResult result) {
this.result = result;
return this;
}
public QueryHotelRoomDetailResponseBodyResult getResult() {
return this.result;
}
public QueryHotelRoomDetailResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class QueryHotelRoomDetailResponseBodyResultAuthAccounts extends TeaModel {
@NameInMap("AccountName")
public String accountName;
/**
* <strong>example:</strong>
* <p>2023-01-01 12:00:00</p>
*/
@NameInMap("AuthTime")
public String authTime;
public static QueryHotelRoomDetailResponseBodyResultAuthAccounts build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResultAuthAccounts self = new QueryHotelRoomDetailResponseBodyResultAuthAccounts();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResultAuthAccounts setAccountName(String accountName) {
this.accountName = accountName;
return this;
}
public String getAccountName() {
return this.accountName;
}
public QueryHotelRoomDetailResponseBodyResultAuthAccounts setAuthTime(String authTime) {
this.authTime = authTime;
return this;
}
public String getAuthTime() {
return this.authTime;
}
}
public static class QueryHotelRoomDetailResponseBodyResultDeviceInfos extends TeaModel {
/**
* <strong>example:</strong>
* <p>2023-01-01 12:00:00</p>
*/
@NameInMap("ActiveTime")
public String activeTime;
@NameInMap("DeviceName")
public String deviceName;
/**
* <strong>example:</strong>
* <p>6.1.8-RS-20230425.1806</p>
*/
@NameInMap("FirmwareVersion")
public String firmwareVersion;
/**
* <strong>example:</strong>
* <p>fa:03:23:58:c3:00</p>
*/
@NameInMap("Mac")
public String mac;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("OnlineStatus")
public Integer onlineStatus;
/**
* <strong>example:</strong>
* <p>sag42dlz4qf</p>
*/
@NameInMap("Sn")
public String sn;
/**
* <strong>example:</strong>
* <p>41c95c18a0a643bcb58edf438877def5</p>
*/
@NameInMap("Uuid")
public String uuid;
public static QueryHotelRoomDetailResponseBodyResultDeviceInfos build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResultDeviceInfos self = new QueryHotelRoomDetailResponseBodyResultDeviceInfos();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setActiveTime(String activeTime) {
this.activeTime = activeTime;
return this;
}
public String getActiveTime() {
return this.activeTime;
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setFirmwareVersion(String firmwareVersion) {
this.firmwareVersion = firmwareVersion;
return this;
}
public String getFirmwareVersion() {
return this.firmwareVersion;
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setMac(String mac) {
this.mac = mac;
return this;
}
public String getMac() {
return this.mac;
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setOnlineStatus(Integer onlineStatus) {
this.onlineStatus = onlineStatus;
return this;
}
public Integer getOnlineStatus() {
return this.onlineStatus;
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setSn(String sn) {
this.sn = sn;
return this;
}
public String getSn() {
return this.sn;
}
public QueryHotelRoomDetailResponseBodyResultDeviceInfos setUuid(String uuid) {
this.uuid = uuid;
return this;
}
public String getUuid() {
return this.uuid;
}
}
public static class QueryHotelRoomDetailResponseBodyResultOtherService extends TeaModel {
/**
* <strong>example:</strong>
* <p>false</p>
*/
@NameInMap("OpenCall")
public Boolean openCall;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("UnhandleTickets")
public Integer unhandleTickets;
public static QueryHotelRoomDetailResponseBodyResultOtherService build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResultOtherService self = new QueryHotelRoomDetailResponseBodyResultOtherService();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResultOtherService setOpenCall(Boolean openCall) {
this.openCall = openCall;
return this;
}
public Boolean getOpenCall() {
return this.openCall;
}
public QueryHotelRoomDetailResponseBodyResultOtherService setUnhandleTickets(Integer unhandleTickets) {
this.unhandleTickets = unhandleTickets;
return this;
}
public Integer getUnhandleTickets() {
return this.unhandleTickets;
}
}
public static class QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos extends TeaModel {
/**
* <strong>example:</strong>
* <p>light</p>
*/
@NameInMap("CategoryEnName")
public String categoryEnName;
/**
* <strong>example:</strong>
* <p>3</p>
*/
@NameInMap("CategoryId")
public Long categoryId;
@NameInMap("CategoryName")
public String categoryName;
/**
* <strong>example:</strong>
* <p>rcu</p>
*/
@NameInMap("DeviceConnectType")
public String deviceConnectType;
/**
* <strong>example:</strong>
* <p>4</p>
*/
@NameInMap("DeviceCount")
public Integer deviceCount;
/**
* <strong>example:</strong>
* <p>readLight</p>
*/
@NameInMap("DeviceId")
public String deviceId;
@NameInMap("DeviceName")
public String deviceName;
/**
* <strong>example:</strong>
* <p>room</p>
*/
@NameInMap("LocationEnName")
public String locationEnName;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("LocationId")
public Long locationId;
@NameInMap("LocationName")
public String locationName;
/**
* <strong>example:</strong>
* <p>a1ueWGP6W2L</p>
*/
@NameInMap("ProductKey")
public String productKey;
public static QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos self = new QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setCategoryEnName(String categoryEnName) {
this.categoryEnName = categoryEnName;
return this;
}
public String getCategoryEnName() {
return this.categoryEnName;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setCategoryId(Long categoryId) {
this.categoryId = categoryId;
return this;
}
public Long getCategoryId() {
return this.categoryId;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setCategoryName(String categoryName) {
this.categoryName = categoryName;
return this;
}
public String getCategoryName() {
return this.categoryName;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setDeviceConnectType(String deviceConnectType) {
this.deviceConnectType = deviceConnectType;
return this;
}
public String getDeviceConnectType() {
return this.deviceConnectType;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setDeviceCount(Integer deviceCount) {
this.deviceCount = deviceCount;
return this;
}
public Integer getDeviceCount() {
return this.deviceCount;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setDeviceId(String deviceId) {
this.deviceId = deviceId;
return this;
}
public String getDeviceId() {
return this.deviceId;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setLocationEnName(String locationEnName) {
this.locationEnName = locationEnName;
return this;
}
public String getLocationEnName() {
return this.locationEnName;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setLocationId(Long locationId) {
this.locationId = locationId;
return this;
}
public Long getLocationId() {
return this.locationId;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setLocationName(String locationName) {
this.locationName = locationName;
return this;
}
public String getLocationName() {
return this.locationName;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos setProductKey(String productKey) {
this.productKey = productKey;
return this;
}
public String getProductKey() {
return this.productKey;
}
}
public static class QueryHotelRoomDetailResponseBodyResultRoomControlInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>78</p>
*/
@NameInMap("AppId")
public Long appId;
/**
* <strong>example:</strong>
* <p>app</p>
*/
@NameInMap("AppName")
public String appName;
@NameInMap("DeviceInfos")
public java.util.List<QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos> deviceInfos;
/**
* <strong>example:</strong>
* <p><a href="http://www.xxx.com">http://www.xxx.com</a></p>
*/
@NameInMap("RcuUrl")
public String rcuUrl;
/**
* <strong>example:</strong>
* <p>1170</p>
*/
@NameInMap("TemplateId")
public Long templateId;
@NameInMap("TemplateName")
public String templateName;
public static QueryHotelRoomDetailResponseBodyResultRoomControlInfo build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResultRoomControlInfo self = new QueryHotelRoomDetailResponseBodyResultRoomControlInfo();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo setAppId(Long appId) {
this.appId = appId;
return this;
}
public Long getAppId() {
return this.appId;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo setAppName(String appName) {
this.appName = appName;
return this;
}
public String getAppName() {
return this.appName;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo setDeviceInfos(java.util.List<QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos> deviceInfos) {
this.deviceInfos = deviceInfos;
return this;
}
public java.util.List<QueryHotelRoomDetailResponseBodyResultRoomControlInfoDeviceInfos> getDeviceInfos() {
return this.deviceInfos;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo setRcuUrl(String rcuUrl) {
this.rcuUrl = rcuUrl;
return this;
}
public String getRcuUrl() {
return this.rcuUrl;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo setTemplateId(Long templateId) {
this.templateId = templateId;
return this;
}
public Long getTemplateId() {
return this.templateId;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
}
public static class QueryHotelRoomDetailResponseBodyResultRoomServiceInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("BookServiceCnt")
public Integer bookServiceCnt;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("GoodsServiceCnt")
public Integer goodsServiceCnt;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("RepairServiceCnt")
public Integer repairServiceCnt;
/**
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("RoomServiceCnt")
public Integer roomServiceCnt;
public static QueryHotelRoomDetailResponseBodyResultRoomServiceInfo build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResultRoomServiceInfo self = new QueryHotelRoomDetailResponseBodyResultRoomServiceInfo();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResultRoomServiceInfo setBookServiceCnt(Integer bookServiceCnt) {
this.bookServiceCnt = bookServiceCnt;
return this;
}
public Integer getBookServiceCnt() {
return this.bookServiceCnt;
}
public QueryHotelRoomDetailResponseBodyResultRoomServiceInfo setGoodsServiceCnt(Integer goodsServiceCnt) {
this.goodsServiceCnt = goodsServiceCnt;
return this;
}
public Integer getGoodsServiceCnt() {
return this.goodsServiceCnt;
}
public QueryHotelRoomDetailResponseBodyResultRoomServiceInfo setRepairServiceCnt(Integer repairServiceCnt) {
this.repairServiceCnt = repairServiceCnt;
return this;
}
public Integer getRepairServiceCnt() {
return this.repairServiceCnt;
}
public QueryHotelRoomDetailResponseBodyResultRoomServiceInfo setRoomServiceCnt(Integer roomServiceCnt) {
this.roomServiceCnt = roomServiceCnt;
return this;
}
public Integer getRoomServiceCnt() {
return this.roomServiceCnt;
}
}
public static class QueryHotelRoomDetailResponseBodyResult extends TeaModel {
@NameInMap("AuthAccounts")
public java.util.List<QueryHotelRoomDetailResponseBodyResultAuthAccounts> authAccounts;
/**
* <strong>example:</strong>
* <p>rcu</p>
*/
@NameInMap("ConnectType")
public String connectType;
@NameInMap("CreatorAccountName")
public String creatorAccountName;
@NameInMap("DeviceInfos")
public java.util.List<QueryHotelRoomDetailResponseBodyResultDeviceInfos> deviceInfos;
/**
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("HotelName")
public String hotelName;
@NameInMap("OtherService")
public QueryHotelRoomDetailResponseBodyResultOtherService otherService;
@NameInMap("RoomControlInfo")
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo roomControlInfo;
/**
* <strong>example:</strong>
* <p>2001</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("RoomServiceInfo")
public QueryHotelRoomDetailResponseBodyResultRoomServiceInfo roomServiceInfo;
public static QueryHotelRoomDetailResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
QueryHotelRoomDetailResponseBodyResult self = new QueryHotelRoomDetailResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryHotelRoomDetailResponseBodyResult setAuthAccounts(java.util.List<QueryHotelRoomDetailResponseBodyResultAuthAccounts> authAccounts) {
this.authAccounts = authAccounts;
return this;
}
public java.util.List<QueryHotelRoomDetailResponseBodyResultAuthAccounts> getAuthAccounts() {
return this.authAccounts;
}
public QueryHotelRoomDetailResponseBodyResult setConnectType(String connectType) {
this.connectType = connectType;
return this;
}
public String getConnectType() {
return this.connectType;
}
public QueryHotelRoomDetailResponseBodyResult setCreatorAccountName(String creatorAccountName) {
this.creatorAccountName = creatorAccountName;
return this;
}
public String getCreatorAccountName() {
return this.creatorAccountName;
}
public QueryHotelRoomDetailResponseBodyResult setDeviceInfos(java.util.List<QueryHotelRoomDetailResponseBodyResultDeviceInfos> deviceInfos) {
this.deviceInfos = deviceInfos;
return this;
}
public java.util.List<QueryHotelRoomDetailResponseBodyResultDeviceInfos> getDeviceInfos() {
return this.deviceInfos;
}
public QueryHotelRoomDetailResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QueryHotelRoomDetailResponseBodyResult setHotelName(String hotelName) {
this.hotelName = hotelName;
return this;
}
public String getHotelName() {
return this.hotelName;
}
public QueryHotelRoomDetailResponseBodyResult setOtherService(QueryHotelRoomDetailResponseBodyResultOtherService otherService) {
this.otherService = otherService;
return this;
}
public QueryHotelRoomDetailResponseBodyResultOtherService getOtherService() {
return this.otherService;
}
public QueryHotelRoomDetailResponseBodyResult setRoomControlInfo(QueryHotelRoomDetailResponseBodyResultRoomControlInfo roomControlInfo) {
this.roomControlInfo = roomControlInfo;
return this;
}
public QueryHotelRoomDetailResponseBodyResultRoomControlInfo getRoomControlInfo() {
return this.roomControlInfo;
}
public QueryHotelRoomDetailResponseBodyResult setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public QueryHotelRoomDetailResponseBodyResult setRoomServiceInfo(QueryHotelRoomDetailResponseBodyResultRoomServiceInfo roomServiceInfo) {
this.roomServiceInfo = roomServiceInfo;
return this;
}
public QueryHotelRoomDetailResponseBodyResultRoomServiceInfo getRoomServiceInfo() {
return this.roomServiceInfo;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesAndStatusHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesAndStatusHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static QueryRoomControlDevicesAndStatusHeaders build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusHeaders self = new QueryRoomControlDevicesAndStatusHeaders();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public QueryRoomControlDevicesAndStatusHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public QueryRoomControlDevicesAndStatusHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesAndStatusRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesAndStatusRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static QueryRoomControlDevicesAndStatusRequest build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusRequest self = new QueryRoomControlDevicesAndStatusRequest();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QueryRoomControlDevicesAndStatusRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesAndStatusResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesAndStatusResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public QueryRoomControlDevicesAndStatusResponseBody body;
public static QueryRoomControlDevicesAndStatusResponse build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusResponse self = new QueryRoomControlDevicesAndStatusResponse();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public QueryRoomControlDevicesAndStatusResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public QueryRoomControlDevicesAndStatusResponse setBody(QueryRoomControlDevicesAndStatusResponseBody body) {
this.body = body;
return this;
}
public QueryRoomControlDevicesAndStatusResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesAndStatusResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesAndStatusResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>73C67***6FA</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static QueryRoomControlDevicesAndStatusResponseBody build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusResponseBody self = new QueryRoomControlDevicesAndStatusResponseBody();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public QueryRoomControlDevicesAndStatusResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryRoomControlDevicesAndStatusResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryRoomControlDevicesAndStatusResponseBody setResult(java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResult> getResult() {
return this.result;
}
public QueryRoomControlDevicesAndStatusResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList extends TeaModel {
@NameInMap("AliasList")
public java.util.List<String> aliasList;
/**
* <strong>example:</strong>
* <p>light</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("DeviceIndex")
public Integer deviceIndex;
@NameInMap("DeviceName")
public String deviceName;
/**
* <strong>example:</strong>
* <p>{
* "powerstate": "0"
* }</p>
*/
@NameInMap("DeviceStatus")
public String deviceStatus;
/**
* <strong>example:</strong>
* <p>e2</p>
*/
@NameInMap("ElementCode")
public String elementCode;
/**
* <strong>example:</strong>
* <p>room</p>
*/
@NameInMap("Location")
public String location;
@NameInMap("Status")
public java.util.Map<String, String> status;
@NameInMap("Tags")
public java.util.List<String> tags;
public static QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList self = new QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setAliasList(java.util.List<String> aliasList) {
this.aliasList = aliasList;
return this;
}
public java.util.List<String> getAliasList() {
return this.aliasList;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setDeviceIndex(Integer deviceIndex) {
this.deviceIndex = deviceIndex;
return this;
}
public Integer getDeviceIndex() {
return this.deviceIndex;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setDeviceStatus(String deviceStatus) {
this.deviceStatus = deviceStatus;
return this;
}
public String getDeviceStatus() {
return this.deviceStatus;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setElementCode(String elementCode) {
this.elementCode = elementCode;
return this;
}
public String getElementCode() {
return this.elementCode;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setStatus(java.util.Map<String, String> status) {
this.status = status;
return this;
}
public java.util.Map<String, String> getStatus() {
return this.status;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList setTags(java.util.List<String> tags) {
this.tags = tags;
return this;
}
public java.util.List<String> getTags() {
return this.tags;
}
}
public static class QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt extends TeaModel {
@NameInMap("SwitchList")
public java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList> switchList;
public static QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt self = new QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt setSwitchList(java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList> switchList) {
this.switchList = switchList;
return this;
}
public java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExtSwitchList> getSwitchList() {
return this.switchList;
}
}
public static class QueryRoomControlDevicesAndStatusResponseBodyResultDevices extends TeaModel {
@NameInMap("AliasList")
public java.util.List<String> aliasList;
@NameInMap("Brand")
public String brand;
@NameInMap("City")
public String city;
/**
* <strong>example:</strong>
* <p>rcu</p>
*/
@NameInMap("ConnectType")
public String connectType;
@NameInMap("DeviceName")
public String deviceName;
/**
* <strong>example:</strong>
* <p>{"powerstate": "1"}</p>
*/
@NameInMap("DeviceStatus")
public String deviceStatus;
/**
* <strong>example:</strong>
* <p>3c5d***9ec</p>
*/
@NameInMap("Dn")
public String dn;
/**
* <strong>example:</strong>
* <p>9**7</p>
*/
@NameInMap("InfraredId")
public String infraredId;
/**
* <strong>example:</strong>
* <p>2</p>
*/
@NameInMap("InfraredIndex")
public String infraredIndex;
/**
* <strong>example:</strong>
* <p>3.0</p>
*/
@NameInMap("InfraredVersion")
public String infraredVersion;
@NameInMap("MultiKeySwitchExt")
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt multiKeySwitchExt;
/**
* <strong>example:</strong>
* <p>light</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>night_light</p>
*/
@NameInMap("Number")
public String number;
/**
* <strong>example:</strong>
* <p>50255129</p>
*/
@NameInMap("Pk")
public String pk;
@NameInMap("Province")
public String province;
@NameInMap("ServiceProvider")
public String serviceProvider;
@NameInMap("Status")
public java.util.Map<String, String> status;
public static QueryRoomControlDevicesAndStatusResponseBodyResultDevices build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusResponseBodyResultDevices self = new QueryRoomControlDevicesAndStatusResponseBodyResultDevices();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setAliasList(java.util.List<String> aliasList) {
this.aliasList = aliasList;
return this;
}
public java.util.List<String> getAliasList() {
return this.aliasList;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setBrand(String brand) {
this.brand = brand;
return this;
}
public String getBrand() {
return this.brand;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setCity(String city) {
this.city = city;
return this;
}
public String getCity() {
return this.city;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setConnectType(String connectType) {
this.connectType = connectType;
return this;
}
public String getConnectType() {
return this.connectType;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setDeviceStatus(String deviceStatus) {
this.deviceStatus = deviceStatus;
return this;
}
public String getDeviceStatus() {
return this.deviceStatus;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setDn(String dn) {
this.dn = dn;
return this;
}
public String getDn() {
return this.dn;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setInfraredId(String infraredId) {
this.infraredId = infraredId;
return this;
}
public String getInfraredId() {
return this.infraredId;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setInfraredIndex(String infraredIndex) {
this.infraredIndex = infraredIndex;
return this;
}
public String getInfraredIndex() {
return this.infraredIndex;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setInfraredVersion(String infraredVersion) {
this.infraredVersion = infraredVersion;
return this;
}
public String getInfraredVersion() {
return this.infraredVersion;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setMultiKeySwitchExt(QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt multiKeySwitchExt) {
this.multiKeySwitchExt = multiKeySwitchExt;
return this;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevicesMultiKeySwitchExt getMultiKeySwitchExt() {
return this.multiKeySwitchExt;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setNumber(String number) {
this.number = number;
return this;
}
public String getNumber() {
return this.number;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setPk(String pk) {
this.pk = pk;
return this;
}
public String getPk() {
return this.pk;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setProvince(String province) {
this.province = province;
return this;
}
public String getProvince() {
return this.province;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setServiceProvider(String serviceProvider) {
this.serviceProvider = serviceProvider;
return this;
}
public String getServiceProvider() {
return this.serviceProvider;
}
public QueryRoomControlDevicesAndStatusResponseBodyResultDevices setStatus(java.util.Map<String, String> status) {
this.status = status;
return this;
}
public java.util.Map<String, String> getStatus() {
return this.status;
}
}
public static class QueryRoomControlDevicesAndStatusResponseBodyResult extends TeaModel {
@NameInMap("Devices")
public java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResultDevices> devices;
/**
* <strong>example:</strong>
* <p>room</p>
*/
@NameInMap("Location")
public String location;
@NameInMap("LocationName")
public String locationName;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static QueryRoomControlDevicesAndStatusResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesAndStatusResponseBodyResult self = new QueryRoomControlDevicesAndStatusResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesAndStatusResponseBodyResult setDevices(java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResultDevices> devices) {
this.devices = devices;
return this;
}
public java.util.List<QueryRoomControlDevicesAndStatusResponseBodyResultDevices> getDevices() {
return this.devices;
}
public QueryRoomControlDevicesAndStatusResponseBodyResult setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
public QueryRoomControlDevicesAndStatusResponseBodyResult setLocationName(String locationName) {
this.locationName = locationName;
return this;
}
public String getLocationName() {
return this.locationName;
}
public QueryRoomControlDevicesAndStatusResponseBodyResult setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static QueryRoomControlDevicesHeaders build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesHeaders self = new QueryRoomControlDevicesHeaders();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public QueryRoomControlDevicesHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public QueryRoomControlDevicesHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static QueryRoomControlDevicesRequest build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesRequest self = new QueryRoomControlDevicesRequest();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QueryRoomControlDevicesRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public QueryRoomControlDevicesResponseBody body;
public static QueryRoomControlDevicesResponse build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesResponse self = new QueryRoomControlDevicesResponse();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public QueryRoomControlDevicesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public QueryRoomControlDevicesResponse setBody(QueryRoomControlDevicesResponseBody body) {
this.body = body;
return this;
}
public QueryRoomControlDevicesResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomControlDevicesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomControlDevicesResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>fdsgfdscvre</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<QueryRoomControlDevicesResponseBodyResult> result;
public static QueryRoomControlDevicesResponseBody build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesResponseBody self = new QueryRoomControlDevicesResponseBody();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public QueryRoomControlDevicesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryRoomControlDevicesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryRoomControlDevicesResponseBody setResult(java.util.List<QueryRoomControlDevicesResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<QueryRoomControlDevicesResponseBodyResult> getResult() {
return this.result;
}
public static class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList extends TeaModel {
@NameInMap("AliasList")
public java.util.List<String> aliasList;
@NameInMap("Category")
public String category;
@NameInMap("DeviceIndex")
public Integer deviceIndex;
@NameInMap("DeviceName")
public String deviceName;
@NameInMap("DeviceStatus")
public String deviceStatus;
@NameInMap("ElementCode")
public String elementCode;
@NameInMap("Location")
public String location;
public static QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList self = new QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setAliasList(java.util.List<String> aliasList) {
this.aliasList = aliasList;
return this;
}
public java.util.List<String> getAliasList() {
return this.aliasList;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setDeviceIndex(Integer deviceIndex) {
this.deviceIndex = deviceIndex;
return this;
}
public Integer getDeviceIndex() {
return this.deviceIndex;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setDeviceStatus(String deviceStatus) {
this.deviceStatus = deviceStatus;
return this;
}
public String getDeviceStatus() {
return this.deviceStatus;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setElementCode(String elementCode) {
this.elementCode = elementCode;
return this;
}
public String getElementCode() {
return this.elementCode;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
}
public static class QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt extends TeaModel {
@NameInMap("SwitchList")
public java.util.List<QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList> switchList;
public static QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt self = new QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt setSwitchList(java.util.List<QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList> switchList) {
this.switchList = switchList;
return this;
}
public java.util.List<QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExtSwitchList> getSwitchList() {
return this.switchList;
}
}
public static class QueryRoomControlDevicesResponseBodyResultDevices extends TeaModel {
@NameInMap("AliasList")
public java.util.List<String> aliasList;
@NameInMap("ConnectType")
public String connectType;
@NameInMap("DN")
public String DN;
@NameInMap("DeviceName")
public String deviceName;
@NameInMap("DeviceStatus")
public String deviceStatus;
@NameInMap("MultiKeySwitchExt")
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt multiKeySwitchExt;
/**
* <strong>example:</strong>
* <p>light</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>night_light</p>
*/
@NameInMap("Number")
public String number;
@NameInMap("PK")
public String PK;
public static QueryRoomControlDevicesResponseBodyResultDevices build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesResponseBodyResultDevices self = new QueryRoomControlDevicesResponseBodyResultDevices();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesResponseBodyResultDevices setAliasList(java.util.List<String> aliasList) {
this.aliasList = aliasList;
return this;
}
public java.util.List<String> getAliasList() {
return this.aliasList;
}
public QueryRoomControlDevicesResponseBodyResultDevices setConnectType(String connectType) {
this.connectType = connectType;
return this;
}
public String getConnectType() {
return this.connectType;
}
public QueryRoomControlDevicesResponseBodyResultDevices setDN(String DN) {
this.DN = DN;
return this;
}
public String getDN() {
return this.DN;
}
public QueryRoomControlDevicesResponseBodyResultDevices setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public QueryRoomControlDevicesResponseBodyResultDevices setDeviceStatus(String deviceStatus) {
this.deviceStatus = deviceStatus;
return this;
}
public String getDeviceStatus() {
return this.deviceStatus;
}
public QueryRoomControlDevicesResponseBodyResultDevices setMultiKeySwitchExt(QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt multiKeySwitchExt) {
this.multiKeySwitchExt = multiKeySwitchExt;
return this;
}
public QueryRoomControlDevicesResponseBodyResultDevicesMultiKeySwitchExt getMultiKeySwitchExt() {
return this.multiKeySwitchExt;
}
public QueryRoomControlDevicesResponseBodyResultDevices setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public QueryRoomControlDevicesResponseBodyResultDevices setNumber(String number) {
this.number = number;
return this;
}
public String getNumber() {
return this.number;
}
public QueryRoomControlDevicesResponseBodyResultDevices setPK(String PK) {
this.PK = PK;
return this;
}
public String getPK() {
return this.PK;
}
}
public static class QueryRoomControlDevicesResponseBodyResult extends TeaModel {
@NameInMap("Devices")
public java.util.List<QueryRoomControlDevicesResponseBodyResultDevices> devices;
/**
* <strong>example:</strong>
* <p>room</p>
*/
@NameInMap("Location")
public String location;
@NameInMap("LocationName")
public String locationName;
public static QueryRoomControlDevicesResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
QueryRoomControlDevicesResponseBodyResult self = new QueryRoomControlDevicesResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryRoomControlDevicesResponseBodyResult setDevices(java.util.List<QueryRoomControlDevicesResponseBodyResultDevices> devices) {
this.devices = devices;
return this;
}
public java.util.List<QueryRoomControlDevicesResponseBodyResultDevices> getDevices() {
return this.devices;
}
public QueryRoomControlDevicesResponseBodyResult setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
public QueryRoomControlDevicesResponseBodyResult setLocationName(String locationName) {
this.locationName = locationName;
return this;
}
public String getLocationName() {
return this.locationName;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomStatusHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomStatusHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static QueryRoomStatusHeaders build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusHeaders self = new QueryRoomStatusHeaders();
return TeaModel.build(map, self);
}
public QueryRoomStatusHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public QueryRoomStatusHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public QueryRoomStatusHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomStatusRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomStatusRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>cf2446fc9d144c85aaee4f9ae20a96e7</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static QueryRoomStatusRequest build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusRequest self = new QueryRoomStatusRequest();
return TeaModel.build(map, self);
}
public QueryRoomStatusRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QueryRoomStatusRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomStatusResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomStatusResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public QueryRoomStatusResponseBody body;
public static QueryRoomStatusResponse build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusResponse self = new QueryRoomStatusResponse();
return TeaModel.build(map, self);
}
public QueryRoomStatusResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public QueryRoomStatusResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public QueryRoomStatusResponse setBody(QueryRoomStatusResponseBody body) {
this.body = body;
return this;
}
public QueryRoomStatusResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QueryRoomStatusResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QueryRoomStatusResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("Code")
public Integer code;
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>FAFCD152-4791-5F2F-B0BE-2DC06FD4F05B</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public QueryRoomStatusResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static QueryRoomStatusResponseBody build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusResponseBody self = new QueryRoomStatusResponseBody();
return TeaModel.build(map, self);
}
public QueryRoomStatusResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public QueryRoomStatusResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QueryRoomStatusResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QueryRoomStatusResponseBody setResult(QueryRoomStatusResponseBodyResult result) {
this.result = result;
return this;
}
public QueryRoomStatusResponseBodyResult getResult() {
return this.result;
}
public QueryRoomStatusResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class QueryRoomStatusResponseBodyResultSceneList extends TeaModel {
@NameInMap("SceneName")
public String sceneName;
public static QueryRoomStatusResponseBodyResultSceneList build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusResponseBodyResultSceneList self = new QueryRoomStatusResponseBodyResultSceneList();
return TeaModel.build(map, self);
}
public QueryRoomStatusResponseBodyResultSceneList setSceneName(String sceneName) {
this.sceneName = sceneName;
return this;
}
public String getSceneName() {
return this.sceneName;
}
}
public static class QueryRoomStatusResponseBodyResultStatusList extends TeaModel {
@NameInMap("StatusName")
public String statusName;
@NameInMap("StatusValue")
public String statusValue;
/**
* <strong>example:</strong>
* <p>Thu Jan 09 13:56:51 CST 2025</p>
*/
@NameInMap("UpdateTime")
public String updateTime;
public static QueryRoomStatusResponseBodyResultStatusList build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusResponseBodyResultStatusList self = new QueryRoomStatusResponseBodyResultStatusList();
return TeaModel.build(map, self);
}
public QueryRoomStatusResponseBodyResultStatusList setStatusName(String statusName) {
this.statusName = statusName;
return this;
}
public String getStatusName() {
return this.statusName;
}
public QueryRoomStatusResponseBodyResultStatusList setStatusValue(String statusValue) {
this.statusValue = statusValue;
return this;
}
public String getStatusValue() {
return this.statusValue;
}
public QueryRoomStatusResponseBodyResultStatusList setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public String getUpdateTime() {
return this.updateTime;
}
}
public static class QueryRoomStatusResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>cf2446fc9d144c85aaee4f9ae20a96e7</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("SceneList")
public java.util.List<QueryRoomStatusResponseBodyResultSceneList> sceneList;
@NameInMap("StatusList")
public java.util.List<QueryRoomStatusResponseBodyResultStatusList> statusList;
public static QueryRoomStatusResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
QueryRoomStatusResponseBodyResult self = new QueryRoomStatusResponseBodyResult();
return TeaModel.build(map, self);
}
public QueryRoomStatusResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QueryRoomStatusResponseBodyResult setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public QueryRoomStatusResponseBodyResult setSceneList(java.util.List<QueryRoomStatusResponseBodyResultSceneList> sceneList) {
this.sceneList = sceneList;
return this;
}
public java.util.List<QueryRoomStatusResponseBodyResultSceneList> getSceneList() {
return this.sceneList;
}
public QueryRoomStatusResponseBodyResult setStatusList(java.util.List<QueryRoomStatusResponseBodyResultStatusList> statusList) {
this.statusList = statusList;
return this;
}
public java.util.List<QueryRoomStatusResponseBodyResultStatusList> getStatusList() {
return this.statusList;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QuerySceneListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QuerySceneListHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static QuerySceneListHeaders build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListHeaders self = new QuerySceneListHeaders();
return TeaModel.build(map, self);
}
public QuerySceneListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public QuerySceneListHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public QuerySceneListHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QuerySceneListRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QuerySceneListRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("SceneStates")
public java.util.List<Integer> sceneStates;
@NameInMap("SceneTypes")
public java.util.List<String> sceneTypes;
@NameInMap("TemplateInfoIds")
public java.util.List<String> templateInfoIds;
public static QuerySceneListRequest build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListRequest self = new QuerySceneListRequest();
return TeaModel.build(map, self);
}
public QuerySceneListRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QuerySceneListRequest setSceneStates(java.util.List<Integer> sceneStates) {
this.sceneStates = sceneStates;
return this;
}
public java.util.List<Integer> getSceneStates() {
return this.sceneStates;
}
public QuerySceneListRequest setSceneTypes(java.util.List<String> sceneTypes) {
this.sceneTypes = sceneTypes;
return this;
}
public java.util.List<String> getSceneTypes() {
return this.sceneTypes;
}
public QuerySceneListRequest setTemplateInfoIds(java.util.List<String> templateInfoIds) {
this.templateInfoIds = templateInfoIds;
return this;
}
public java.util.List<String> getTemplateInfoIds() {
return this.templateInfoIds;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QuerySceneListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QuerySceneListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public QuerySceneListResponseBody body;
public static QuerySceneListResponse build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListResponse self = new QuerySceneListResponse();
return TeaModel.build(map, self);
}
public QuerySceneListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public QuerySceneListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public QuerySceneListResponse setBody(QuerySceneListResponseBody body) {
this.body = body;
return this;
}
public QuerySceneListResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QuerySceneListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QuerySceneListResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>FAFCD152-4791-5F2F-B0BE-2DC06FD4F05B</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Results")
public java.util.List<QuerySceneListResponseBodyResults> results;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static QuerySceneListResponseBody build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListResponseBody self = new QuerySceneListResponseBody();
return TeaModel.build(map, self);
}
public QuerySceneListResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public QuerySceneListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public QuerySceneListResponseBody setResults(java.util.List<QuerySceneListResponseBodyResults> results) {
this.results = results;
return this;
}
public java.util.List<QuerySceneListResponseBodyResults> getResults() {
return this.results;
}
public QuerySceneListResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class QuerySceneListResponseBodyResultsTemplateInfoDTOList extends TeaModel {
@NameInMap("Description")
public String description;
/**
* <strong>example:</strong>
* <p>6962</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>101</p>
*/
@NameInMap("Name")
public String name;
public static QuerySceneListResponseBodyResultsTemplateInfoDTOList build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListResponseBodyResultsTemplateInfoDTOList self = new QuerySceneListResponseBodyResultsTemplateInfoDTOList();
return TeaModel.build(map, self);
}
public QuerySceneListResponseBodyResultsTemplateInfoDTOList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public QuerySceneListResponseBodyResultsTemplateInfoDTOList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public QuerySceneListResponseBodyResultsTemplateInfoDTOList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
}
public static class QuerySceneListResponseBodyResults extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="https://ailabsaicloudservice.alicdn.com/hotel/icon/changjingmoshi/shuimian.png">https://ailabsaicloudservice.alicdn.com/hotel/icon/changjingmoshi/shuimian.png</a></p>
*/
@NameInMap("Icon")
public String icon;
/**
* <strong>example:</strong>
* <p>73</p>
*/
@NameInMap("SceneId")
public String sceneId;
@NameInMap("SceneName")
public String sceneName;
/**
* <strong>example:</strong>
* <p>external</p>
*/
@NameInMap("SceneSource")
public String sceneSource;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("SceneState")
public Integer sceneState;
/**
* <strong>example:</strong>
* <p>common</p>
*/
@NameInMap("SceneType")
public String sceneType;
@NameInMap("TemplateInfoDTOList")
public java.util.List<QuerySceneListResponseBodyResultsTemplateInfoDTOList> templateInfoDTOList;
@NameInMap("UnavailableReason")
public String unavailableReason;
public static QuerySceneListResponseBodyResults build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListResponseBodyResults self = new QuerySceneListResponseBodyResults();
return TeaModel.build(map, self);
}
public QuerySceneListResponseBodyResults setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public QuerySceneListResponseBodyResults setSceneId(String sceneId) {
this.sceneId = sceneId;
return this;
}
public String getSceneId() {
return this.sceneId;
}
public QuerySceneListResponseBodyResults setSceneName(String sceneName) {
this.sceneName = sceneName;
return this;
}
public String getSceneName() {
return this.sceneName;
}
public QuerySceneListResponseBodyResults setSceneSource(String sceneSource) {
this.sceneSource = sceneSource;
return this;
}
public String getSceneSource() {
return this.sceneSource;
}
public QuerySceneListResponseBodyResults setSceneState(Integer sceneState) {
this.sceneState = sceneState;
return this;
}
public Integer getSceneState() {
return this.sceneState;
}
public QuerySceneListResponseBodyResults setSceneType(String sceneType) {
this.sceneType = sceneType;
return this;
}
public String getSceneType() {
return this.sceneType;
}
public QuerySceneListResponseBodyResults setTemplateInfoDTOList(java.util.List<QuerySceneListResponseBodyResultsTemplateInfoDTOList> templateInfoDTOList) {
this.templateInfoDTOList = templateInfoDTOList;
return this;
}
public java.util.List<QuerySceneListResponseBodyResultsTemplateInfoDTOList> getTemplateInfoDTOList() {
return this.templateInfoDTOList;
}
public QuerySceneListResponseBodyResults setUnavailableReason(String unavailableReason) {
this.unavailableReason = unavailableReason;
return this;
}
public String getUnavailableReason() {
return this.unavailableReason;
}
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/QuerySceneListShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class QuerySceneListShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("SceneStates")
public String sceneStatesShrink;
@NameInMap("SceneTypes")
public String sceneTypesShrink;
@NameInMap("TemplateInfoIds")
public String templateInfoIdsShrink;
public static QuerySceneListShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
QuerySceneListShrinkRequest self = new QuerySceneListShrinkRequest();
return TeaModel.build(map, self);
}
public QuerySceneListShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public QuerySceneListShrinkRequest setSceneStatesShrink(String sceneStatesShrink) {
this.sceneStatesShrink = sceneStatesShrink;
return this;
}
public String getSceneStatesShrink() {
return this.sceneStatesShrink;
}
public QuerySceneListShrinkRequest setSceneTypesShrink(String sceneTypesShrink) {
this.sceneTypesShrink = sceneTypesShrink;
return this;
}
public String getSceneTypesShrink() {
return this.sceneTypesShrink;
}
public QuerySceneListShrinkRequest setTemplateInfoIdsShrink(String templateInfoIdsShrink) {
this.templateInfoIdsShrink = templateInfoIdsShrink;
return this;
}
public String getTemplateInfoIdsShrink() {
return this.templateInfoIdsShrink;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveChildAccountAuthHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveChildAccountAuthHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static RemoveChildAccountAuthHeaders build(java.util.Map<String, ?> map) throws Exception {
RemoveChildAccountAuthHeaders self = new RemoveChildAccountAuthHeaders();
return TeaModel.build(map, self);
}
public RemoveChildAccountAuthHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public RemoveChildAccountAuthHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public RemoveChildAccountAuthHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveChildAccountAuthRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveChildAccountAuthRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>30**53</p>
*/
@NameInMap("AppKey")
public String appKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>tbxxxx</p>
*/
@NameInMap("ChildAccountName")
public String childAccountName;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>AAEV***E3d3Z2ETwh</p>
*/
@NameInMap("TbOpenId")
public String tbOpenId;
public static RemoveChildAccountAuthRequest build(java.util.Map<String, ?> map) throws Exception {
RemoveChildAccountAuthRequest self = new RemoveChildAccountAuthRequest();
return TeaModel.build(map, self);
}
public RemoveChildAccountAuthRequest setAppKey(String appKey) {
this.appKey = appKey;
return this;
}
public String getAppKey() {
return this.appKey;
}
public RemoveChildAccountAuthRequest setChildAccountName(String childAccountName) {
this.childAccountName = childAccountName;
return this;
}
public String getChildAccountName() {
return this.childAccountName;
}
public RemoveChildAccountAuthRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public RemoveChildAccountAuthRequest setTbOpenId(String tbOpenId) {
this.tbOpenId = tbOpenId;
return this;
}
public String getTbOpenId() {
return this.tbOpenId;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveChildAccountAuthResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveChildAccountAuthResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public RemoveChildAccountAuthResponseBody body;
public static RemoveChildAccountAuthResponse build(java.util.Map<String, ?> map) throws Exception {
RemoveChildAccountAuthResponse self = new RemoveChildAccountAuthResponse();
return TeaModel.build(map, self);
}
public RemoveChildAccountAuthResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public RemoveChildAccountAuthResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public RemoveChildAccountAuthResponse setBody(RemoveChildAccountAuthResponseBody body) {
this.body = body;
return this;
}
public RemoveChildAccountAuthResponseBody getBody() {
return this.body;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveChildAccountAuthResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveChildAccountAuthResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F12B***F34E</p>
*/
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>True</p>
*/
@NameInMap("Result")
public Boolean result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static RemoveChildAccountAuthResponseBody build(java.util.Map<String, ?> map) throws Exception {
RemoveChildAccountAuthResponseBody self = new RemoveChildAccountAuthResponseBody();
return TeaModel.build(map, self);
}
public RemoveChildAccountAuthResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public RemoveChildAccountAuthResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public RemoveChildAccountAuthResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public RemoveChildAccountAuthResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveHotelHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveHotelHeaders extends TeaModel {
@NameInMap("commonHeaders")
public java.util.Map<String, String> commonHeaders;
@NameInMap("x-acs-aligenie-access-token")
public String xAcsAligenieAccessToken;
@NameInMap("Authorization")
public String authorization;
public static RemoveHotelHeaders build(java.util.Map<String, ?> map) throws Exception {
RemoveHotelHeaders self = new RemoveHotelHeaders();
return TeaModel.build(map, self);
}
public RemoveHotelHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public RemoveHotelHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public RemoveHotelHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveHotelRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveHotelRequest extends TeaModel {
/**
* <p>appkey</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>30193305</p>
*/
@NameInMap("AppKey")
public String appKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>e6dd44fd16084db8a60d69fd625d9f0f</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>AAEVK***UE3d3Z2ETwh</p>
*/
@NameInMap("TbOpenId")
public String tbOpenId;
public static RemoveHotelRequest build(java.util.Map<String, ?> map) throws Exception {
RemoveHotelRequest self = new RemoveHotelRequest();
return TeaModel.build(map, self);
}
public RemoveHotelRequest setAppKey(String appKey) {
this.appKey = appKey;
return this;
}
public String getAppKey() {
return this.appKey;
}
public RemoveHotelRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public RemoveHotelRequest setTbOpenId(String tbOpenId) {
this.tbOpenId = tbOpenId;
return this;
}
public String getTbOpenId() {
return this.tbOpenId;
}
}
|
0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0
|
java-sources/com/aliyun/aligenieip_1_0/2.8.2/com/aliyun/aligenieip_1_0/models/RemoveHotelResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class RemoveHotelResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public RemoveHotelResponseBody body;
public static RemoveHotelResponse build(java.util.Map<String, ?> map) throws Exception {
RemoveHotelResponse self = new RemoveHotelResponse();
return TeaModel.build(map, self);
}
public RemoveHotelResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public RemoveHotelResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public RemoveHotelResponse setBody(RemoveHotelResponseBody body) {
this.body = body;
return this;
}
public RemoveHotelResponseBody getBody() {
return this.body;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.