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/GetHotelScreenSaverStyleHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelScreenSaverStyleHeaders 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 GetHotelScreenSaverStyleHeaders build(java.util.Map<String, ?> map) throws Exception {
GetHotelScreenSaverStyleHeaders self = new GetHotelScreenSaverStyleHeaders();
return TeaModel.build(map, self);
}
public GetHotelScreenSaverStyleHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetHotelScreenSaverStyleHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public GetHotelScreenSaverStyleHeaders 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/GetHotelScreenSaverStyleRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelScreenSaverStyleRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static GetHotelScreenSaverStyleRequest build(java.util.Map<String, ?> map) throws Exception {
GetHotelScreenSaverStyleRequest self = new GetHotelScreenSaverStyleRequest();
return TeaModel.build(map, self);
}
public GetHotelScreenSaverStyleRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
}
|
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/GetHotelScreenSaverStyleResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelScreenSaverStyleResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetHotelScreenSaverStyleResponseBody body;
public static GetHotelScreenSaverStyleResponse build(java.util.Map<String, ?> map) throws Exception {
GetHotelScreenSaverStyleResponse self = new GetHotelScreenSaverStyleResponse();
return TeaModel.build(map, self);
}
public GetHotelScreenSaverStyleResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetHotelScreenSaverStyleResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetHotelScreenSaverStyleResponse setBody(GetHotelScreenSaverStyleResponseBody body) {
this.body = body;
return this;
}
public GetHotelScreenSaverStyleResponseBody 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/GetHotelScreenSaverStyleResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelScreenSaverStyleResponseBody extends TeaModel {
/**
* <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<GetHotelScreenSaverStyleResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static GetHotelScreenSaverStyleResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetHotelScreenSaverStyleResponseBody self = new GetHotelScreenSaverStyleResponseBody();
return TeaModel.build(map, self);
}
public GetHotelScreenSaverStyleResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetHotelScreenSaverStyleResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetHotelScreenSaverStyleResponseBody setResult(java.util.List<GetHotelScreenSaverStyleResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetHotelScreenSaverStyleResponseBodyResult> getResult() {
return this.result;
}
public GetHotelScreenSaverStyleResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class GetHotelScreenSaverStyleResponseBodyResult extends TeaModel {
@NameInMap("CnName")
public String cnName;
/**
* <strong>example:</strong>
* <p>common-weather</p>
*/
@NameInMap("Code")
public String code;
/**
* <strong>example:</strong>
* <p>common-weather</p>
*/
@NameInMap("EnName")
public String enName;
/**
* <strong>example:</strong>
* <p><a href="https://img.***.png">https://img.***.png</a></p>
*/
@NameInMap("PicUrl")
public String picUrl;
public static GetHotelScreenSaverStyleResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetHotelScreenSaverStyleResponseBodyResult self = new GetHotelScreenSaverStyleResponseBodyResult();
return TeaModel.build(map, self);
}
public GetHotelScreenSaverStyleResponseBodyResult setCnName(String cnName) {
this.cnName = cnName;
return this;
}
public String getCnName() {
return this.cnName;
}
public GetHotelScreenSaverStyleResponseBodyResult setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public GetHotelScreenSaverStyleResponseBodyResult setEnName(String enName) {
this.enName = enName;
return this;
}
public String getEnName() {
return this.enName;
}
public GetHotelScreenSaverStyleResponseBodyResult setPicUrl(String picUrl) {
this.picUrl = picUrl;
return this;
}
public String getPicUrl() {
return this.picUrl;
}
}
}
|
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/GetHotelSettingHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelSettingHeaders 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 GetHotelSettingHeaders build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingHeaders self = new GetHotelSettingHeaders();
return TeaModel.build(map, self);
}
public GetHotelSettingHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetHotelSettingHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public GetHotelSettingHeaders 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/GetHotelSettingRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelSettingRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>SCREENSAVER</p>
*/
@NameInMap("SettingType")
public String settingType;
public static GetHotelSettingRequest build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingRequest self = new GetHotelSettingRequest();
return TeaModel.build(map, self);
}
public GetHotelSettingRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public GetHotelSettingRequest setSettingType(String settingType) {
this.settingType = settingType;
return this;
}
public String getSettingType() {
return this.settingType;
}
}
|
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/GetHotelSettingResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelSettingResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetHotelSettingResponseBody body;
public static GetHotelSettingResponse build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingResponse self = new GetHotelSettingResponse();
return TeaModel.build(map, self);
}
public GetHotelSettingResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetHotelSettingResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetHotelSettingResponse setBody(GetHotelSettingResponseBody body) {
this.body = body;
return this;
}
public GetHotelSettingResponseBody 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/GetHotelSettingResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetHotelSettingResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>F7E2****B7C94</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public GetHotelSettingResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static GetHotelSettingResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingResponseBody self = new GetHotelSettingResponseBody();
return TeaModel.build(map, self);
}
public GetHotelSettingResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetHotelSettingResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetHotelSettingResponseBody setResult(GetHotelSettingResponseBodyResult result) {
this.result = result;
return this;
}
public GetHotelSettingResponseBodyResult getResult() {
return this.result;
}
public GetHotelSettingResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class GetHotelSettingResponseBodyResultHotelScreenSaver extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="https://a***png">https://a***png</a></p>
*/
@NameInMap("ScreenSaverPicUrl")
public String screenSaverPicUrl;
/**
* <strong>example:</strong>
* <p>common-weather</p>
*/
@NameInMap("ScreenSaverStyle")
public String screenSaverStyle;
public static GetHotelSettingResponseBodyResultHotelScreenSaver build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingResponseBodyResultHotelScreenSaver self = new GetHotelSettingResponseBodyResultHotelScreenSaver();
return TeaModel.build(map, self);
}
public GetHotelSettingResponseBodyResultHotelScreenSaver setScreenSaverPicUrl(String screenSaverPicUrl) {
this.screenSaverPicUrl = screenSaverPicUrl;
return this;
}
public String getScreenSaverPicUrl() {
return this.screenSaverPicUrl;
}
public GetHotelSettingResponseBodyResultHotelScreenSaver setScreenSaverStyle(String screenSaverStyle) {
this.screenSaverStyle = screenSaverStyle;
return this;
}
public String getScreenSaverStyle() {
return this.screenSaverStyle;
}
}
public static class GetHotelSettingResponseBodyResultNightMode extends TeaModel {
/**
* <p>夜间模式下的默认亮度</p>
*/
@NameInMap("DefaultBright")
public String defaultBright;
/**
* <p>夜间模式下的默认音量</p>
*/
@NameInMap("DefaultVolume")
public String defaultVolume;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Enable")
public Boolean enable;
/**
* <strong>example:</strong>
* <p>22:00</p>
*/
@NameInMap("End")
public String end;
/**
* <strong>example:</strong>
* <p>screenoff</p>
*/
@NameInMap("StandbyAction")
public String standbyAction;
/**
* <strong>example:</strong>
* <p>07:00</p>
*/
@NameInMap("Start")
public String start;
public static GetHotelSettingResponseBodyResultNightMode build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingResponseBodyResultNightMode self = new GetHotelSettingResponseBodyResultNightMode();
return TeaModel.build(map, self);
}
public GetHotelSettingResponseBodyResultNightMode setDefaultBright(String defaultBright) {
this.defaultBright = defaultBright;
return this;
}
public String getDefaultBright() {
return this.defaultBright;
}
public GetHotelSettingResponseBodyResultNightMode setDefaultVolume(String defaultVolume) {
this.defaultVolume = defaultVolume;
return this;
}
public String getDefaultVolume() {
return this.defaultVolume;
}
public GetHotelSettingResponseBodyResultNightMode setEnable(Boolean enable) {
this.enable = enable;
return this;
}
public Boolean getEnable() {
return this.enable;
}
public GetHotelSettingResponseBodyResultNightMode setEnd(String end) {
this.end = end;
return this;
}
public String getEnd() {
return this.end;
}
public GetHotelSettingResponseBodyResultNightMode setStandbyAction(String standbyAction) {
this.standbyAction = standbyAction;
return this;
}
public String getStandbyAction() {
return this.standbyAction;
}
public GetHotelSettingResponseBodyResultNightMode setStart(String start) {
this.start = start;
return this;
}
public String getStart() {
return this.start;
}
}
public static class GetHotelSettingResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("DeleteToken")
public Long deleteToken;
/**
* <strong>example:</strong>
* <p>{}</p>
*/
@NameInMap("ExtInfo")
public String extInfo;
@NameInMap("HotelDeviceModeList")
public java.util.List<String> hotelDeviceModeList;
/**
* <strong>example:</strong>
* <p>af7***536</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("HotelScreenSaver")
public GetHotelSettingResponseBodyResultHotelScreenSaver hotelScreenSaver;
@NameInMap("NightMode")
public GetHotelSettingResponseBodyResultNightMode nightMode;
/**
* <strong>example:</strong>
* <p>SCREENSAVER</p>
*/
@NameInMap("SettingType")
public String settingType;
@NameInMap("Value")
public String value;
public static GetHotelSettingResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetHotelSettingResponseBodyResult self = new GetHotelSettingResponseBodyResult();
return TeaModel.build(map, self);
}
public GetHotelSettingResponseBodyResult setDeleteToken(Long deleteToken) {
this.deleteToken = deleteToken;
return this;
}
public Long getDeleteToken() {
return this.deleteToken;
}
public GetHotelSettingResponseBodyResult setExtInfo(String extInfo) {
this.extInfo = extInfo;
return this;
}
public String getExtInfo() {
return this.extInfo;
}
public GetHotelSettingResponseBodyResult setHotelDeviceModeList(java.util.List<String> hotelDeviceModeList) {
this.hotelDeviceModeList = hotelDeviceModeList;
return this;
}
public java.util.List<String> getHotelDeviceModeList() {
return this.hotelDeviceModeList;
}
public GetHotelSettingResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public GetHotelSettingResponseBodyResult setHotelScreenSaver(GetHotelSettingResponseBodyResultHotelScreenSaver hotelScreenSaver) {
this.hotelScreenSaver = hotelScreenSaver;
return this;
}
public GetHotelSettingResponseBodyResultHotelScreenSaver getHotelScreenSaver() {
return this.hotelScreenSaver;
}
public GetHotelSettingResponseBodyResult setNightMode(GetHotelSettingResponseBodyResultNightMode nightMode) {
this.nightMode = nightMode;
return this;
}
public GetHotelSettingResponseBodyResultNightMode getNightMode() {
return this.nightMode;
}
public GetHotelSettingResponseBodyResult setSettingType(String settingType) {
this.settingType = settingType;
return this;
}
public String getSettingType() {
return this.settingType;
}
public GetHotelSettingResponseBodyResult setValue(String value) {
this.value = value;
return this;
}
public String getValue() {
return this.value;
}
}
}
|
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/GetRelationProductListHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetRelationProductListHeaders 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 GetRelationProductListHeaders build(java.util.Map<String, ?> map) throws Exception {
GetRelationProductListHeaders self = new GetRelationProductListHeaders();
return TeaModel.build(map, self);
}
public GetRelationProductListHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetRelationProductListHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public GetRelationProductListHeaders 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/GetRelationProductListResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetRelationProductListResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetRelationProductListResponseBody body;
public static GetRelationProductListResponse build(java.util.Map<String, ?> map) throws Exception {
GetRelationProductListResponse self = new GetRelationProductListResponse();
return TeaModel.build(map, self);
}
public GetRelationProductListResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetRelationProductListResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetRelationProductListResponse setBody(GetRelationProductListResponseBody body) {
this.body = body;
return this;
}
public GetRelationProductListResponseBody 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/GetRelationProductListResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetRelationProductListResponseBody 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>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<GetRelationProductListResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static GetRelationProductListResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetRelationProductListResponseBody self = new GetRelationProductListResponseBody();
return TeaModel.build(map, self);
}
public GetRelationProductListResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public GetRelationProductListResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetRelationProductListResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetRelationProductListResponseBody setResult(java.util.List<GetRelationProductListResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetRelationProductListResponseBodyResult> getResult() {
return this.result;
}
public GetRelationProductListResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class GetRelationProductListResponseBodyResult extends TeaModel {
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>jTOSl***l1odxImRw</p>
*/
@NameInMap("Pk")
public String pk;
public static GetRelationProductListResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetRelationProductListResponseBodyResult self = new GetRelationProductListResponseBodyResult();
return TeaModel.build(map, self);
}
public GetRelationProductListResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public GetRelationProductListResponseBodyResult setPk(String pk) {
this.pk = pk;
return this;
}
public String getPk() {
return this.pk;
}
}
}
|
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/GetUnionIdHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetUnionIdHeaders 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 GetUnionIdHeaders build(java.util.Map<String, ?> map) throws Exception {
GetUnionIdHeaders self = new GetUnionIdHeaders();
return TeaModel.build(map, self);
}
public GetUnionIdHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetUnionIdHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public GetUnionIdHeaders 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/GetUnionIdRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetUnionIdRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>125****0946</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>62a319****abdc</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>DEVICE_ID</p>
*/
@NameInMap("IdType")
public String idType;
public static GetUnionIdRequest build(java.util.Map<String, ?> map) throws Exception {
GetUnionIdRequest self = new GetUnionIdRequest();
return TeaModel.build(map, self);
}
public GetUnionIdRequest setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public GetUnionIdRequest setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public GetUnionIdRequest setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public GetUnionIdRequest setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
}
|
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/GetUnionIdResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetUnionIdResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetUnionIdResponseBody body;
public static GetUnionIdResponse build(java.util.Map<String, ?> map) throws Exception {
GetUnionIdResponse self = new GetUnionIdResponse();
return TeaModel.build(map, self);
}
public GetUnionIdResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetUnionIdResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetUnionIdResponse setBody(GetUnionIdResponseBody body) {
this.body = body;
return this;
}
public GetUnionIdResponseBody 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/GetUnionIdResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetUnionIdResponseBody 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 java.util.List<GetUnionIdResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static GetUnionIdResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetUnionIdResponseBody self = new GetUnionIdResponseBody();
return TeaModel.build(map, self);
}
public GetUnionIdResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetUnionIdResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetUnionIdResponseBody setResult(java.util.List<GetUnionIdResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<GetUnionIdResponseBodyResult> getResult() {
return this.result;
}
public GetUnionIdResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class GetUnionIdResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>4325***765</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
/**
* <strong>example:</strong>
* <p>8bh2****8s8</p>
*/
@NameInMap("UnionId")
public String unionId;
public static GetUnionIdResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetUnionIdResponseBodyResult self = new GetUnionIdResponseBodyResult();
return TeaModel.build(map, self);
}
public GetUnionIdResponseBodyResult setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
public GetUnionIdResponseBodyResult setUnionId(String unionId) {
this.unionId = unionId;
return this;
}
public String getUnionId() {
return this.unionId;
}
}
}
|
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/GetWelcomeTextAndMusicHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetWelcomeTextAndMusicHeaders 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 GetWelcomeTextAndMusicHeaders build(java.util.Map<String, ?> map) throws Exception {
GetWelcomeTextAndMusicHeaders self = new GetWelcomeTextAndMusicHeaders();
return TeaModel.build(map, self);
}
public GetWelcomeTextAndMusicHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public GetWelcomeTextAndMusicHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public GetWelcomeTextAndMusicHeaders 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/GetWelcomeTextAndMusicRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetWelcomeTextAndMusicRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a7a3***013</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static GetWelcomeTextAndMusicRequest build(java.util.Map<String, ?> map) throws Exception {
GetWelcomeTextAndMusicRequest self = new GetWelcomeTextAndMusicRequest();
return TeaModel.build(map, self);
}
public GetWelcomeTextAndMusicRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
}
|
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/GetWelcomeTextAndMusicResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetWelcomeTextAndMusicResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public GetWelcomeTextAndMusicResponseBody body;
public static GetWelcomeTextAndMusicResponse build(java.util.Map<String, ?> map) throws Exception {
GetWelcomeTextAndMusicResponse self = new GetWelcomeTextAndMusicResponse();
return TeaModel.build(map, self);
}
public GetWelcomeTextAndMusicResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public GetWelcomeTextAndMusicResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public GetWelcomeTextAndMusicResponse setBody(GetWelcomeTextAndMusicResponseBody body) {
this.body = body;
return this;
}
public GetWelcomeTextAndMusicResponseBody 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/GetWelcomeTextAndMusicResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class GetWelcomeTextAndMusicResponseBody 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>0EC7*726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public GetWelcomeTextAndMusicResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static GetWelcomeTextAndMusicResponseBody build(java.util.Map<String, ?> map) throws Exception {
GetWelcomeTextAndMusicResponseBody self = new GetWelcomeTextAndMusicResponseBody();
return TeaModel.build(map, self);
}
public GetWelcomeTextAndMusicResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public GetWelcomeTextAndMusicResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public GetWelcomeTextAndMusicResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public GetWelcomeTextAndMusicResponseBody setResult(GetWelcomeTextAndMusicResponseBodyResult result) {
this.result = result;
return this;
}
public GetWelcomeTextAndMusicResponseBodyResult getResult() {
return this.result;
}
public GetWelcomeTextAndMusicResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class GetWelcomeTextAndMusicResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p><a href="http://ailabsaicloudservice.alicdn.com/tmp/a.wav">http://ailabsaicloudservice.alicdn.com/tmp/a.wav</a></p>
*/
@NameInMap("MusicUrl")
public String musicUrl;
@NameInMap("Text")
public String text;
public static GetWelcomeTextAndMusicResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
GetWelcomeTextAndMusicResponseBodyResult self = new GetWelcomeTextAndMusicResponseBodyResult();
return TeaModel.build(map, self);
}
public GetWelcomeTextAndMusicResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public GetWelcomeTextAndMusicResponseBodyResult setMusicUrl(String musicUrl) {
this.musicUrl = musicUrl;
return this;
}
public String getMusicUrl() {
return this.musicUrl;
}
public GetWelcomeTextAndMusicResponseBodyResult setText(String text) {
this.text = text;
return this;
}
public String getText() {
return this.text;
}
}
}
|
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/HotelQrBindHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class HotelQrBindHeaders 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 HotelQrBindHeaders build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindHeaders self = new HotelQrBindHeaders();
return TeaModel.build(map, self);
}
public HotelQrBindHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public HotelQrBindHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public HotelQrBindHeaders 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/HotelQrBindRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class HotelQrBindRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("ClientId")
public String clientId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>freuisghrtiesnvfkdsvbfuidslnvfs</p>
*/
@NameInMap("Code")
public String code;
@NameInMap("ExtInfo")
public String extInfo;
/**
* <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>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static HotelQrBindRequest build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindRequest self = new HotelQrBindRequest();
return TeaModel.build(map, self);
}
public HotelQrBindRequest setClientId(String clientId) {
this.clientId = clientId;
return this;
}
public String getClientId() {
return this.clientId;
}
public HotelQrBindRequest setCode(String code) {
this.code = code;
return this;
}
public String getCode() {
return this.code;
}
public HotelQrBindRequest setExtInfo(String extInfo) {
this.extInfo = extInfo;
return this;
}
public String getExtInfo() {
return this.extInfo;
}
public HotelQrBindRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public HotelQrBindRequest 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/HotelQrBindResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class HotelQrBindResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public HotelQrBindResponseBody body;
public static HotelQrBindResponse build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindResponse self = new HotelQrBindResponse();
return TeaModel.build(map, self);
}
public HotelQrBindResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public HotelQrBindResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public HotelQrBindResponse setBody(HotelQrBindResponseBody body) {
this.body = body;
return this;
}
public HotelQrBindResponseBody 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/HotelQrBindResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class HotelQrBindResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>73*<em><strong>9-175A-1324-8202-9FAAB</strong></em>**A</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public HotelQrBindResponseBodyResult result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static HotelQrBindResponseBody build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindResponseBody self = new HotelQrBindResponseBody();
return TeaModel.build(map, self);
}
public HotelQrBindResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public HotelQrBindResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public HotelQrBindResponseBody setResult(HotelQrBindResponseBodyResult result) {
this.result = result;
return this;
}
public HotelQrBindResponseBodyResult getResult() {
return this.result;
}
public HotelQrBindResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class HotelQrBindResponseBodyResultOpenDeviceInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <strong>example:</strong>
* <p>HOTEL</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <strong>example:</strong>
* <p>xxxxxxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>aaaaaaaa</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static HotelQrBindResponseBodyResultOpenDeviceInfo build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindResponseBodyResultOpenDeviceInfo self = new HotelQrBindResponseBodyResultOpenDeviceInfo();
return TeaModel.build(map, self);
}
public HotelQrBindResponseBodyResultOpenDeviceInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public HotelQrBindResponseBodyResultOpenDeviceInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public HotelQrBindResponseBodyResultOpenDeviceInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public HotelQrBindResponseBodyResultOpenDeviceInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public HotelQrBindResponseBodyResultOpenDeviceInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class HotelQrBindResponseBodyResultOpenUserInfo extends TeaModel {
/**
* <strong>example:</strong>
* <p>123</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <strong>example:</strong>
* <p>HOTEL</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <strong>example:</strong>
* <p>xxxxxx</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
/**
* <strong>example:</strong>
* <p>aaaaaaaa</p>
*/
@NameInMap("OrganizationId")
public String organizationId;
public static HotelQrBindResponseBodyResultOpenUserInfo build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindResponseBodyResultOpenUserInfo self = new HotelQrBindResponseBodyResultOpenUserInfo();
return TeaModel.build(map, self);
}
public HotelQrBindResponseBodyResultOpenUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public HotelQrBindResponseBodyResultOpenUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public HotelQrBindResponseBodyResultOpenUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public HotelQrBindResponseBodyResultOpenUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public HotelQrBindResponseBodyResultOpenUserInfo setOrganizationId(String organizationId) {
this.organizationId = organizationId;
return this;
}
public String getOrganizationId() {
return this.organizationId;
}
}
public static class HotelQrBindResponseBodyResult extends TeaModel {
@NameInMap("OpenDeviceInfo")
public HotelQrBindResponseBodyResultOpenDeviceInfo openDeviceInfo;
@NameInMap("OpenUserInfo")
public HotelQrBindResponseBodyResultOpenUserInfo openUserInfo;
public static HotelQrBindResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
HotelQrBindResponseBodyResult self = new HotelQrBindResponseBodyResult();
return TeaModel.build(map, self);
}
public HotelQrBindResponseBodyResult setOpenDeviceInfo(HotelQrBindResponseBodyResultOpenDeviceInfo openDeviceInfo) {
this.openDeviceInfo = openDeviceInfo;
return this;
}
public HotelQrBindResponseBodyResultOpenDeviceInfo getOpenDeviceInfo() {
return this.openDeviceInfo;
}
public HotelQrBindResponseBodyResult setOpenUserInfo(HotelQrBindResponseBodyResultOpenUserInfo openUserInfo) {
this.openUserInfo = openUserInfo;
return this;
}
public HotelQrBindResponseBodyResultOpenUserInfo getOpenUserInfo() {
return this.openUserInfo;
}
}
}
|
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/ImportHotelConfigHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportHotelConfigHeaders 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 ImportHotelConfigHeaders build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigHeaders self = new ImportHotelConfigHeaders();
return TeaModel.build(map, self);
}
public ImportHotelConfigHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ImportHotelConfigHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ImportHotelConfigHeaders 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/ImportHotelConfigRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportHotelConfigRequest 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>
*/
@NameInMap("ImportHotelConfig")
public ImportHotelConfigRequestImportHotelConfig importHotelConfig;
public static ImportHotelConfigRequest build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigRequest self = new ImportHotelConfigRequest();
return TeaModel.build(map, self);
}
public ImportHotelConfigRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ImportHotelConfigRequest setImportHotelConfig(ImportHotelConfigRequestImportHotelConfig importHotelConfig) {
this.importHotelConfig = importHotelConfig;
return this;
}
public ImportHotelConfigRequestImportHotelConfig getImportHotelConfig() {
return this.importHotelConfig;
}
public static class ImportHotelConfigRequestImportHotelConfigRcuCustomScenes extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("CorpusList")
public java.util.List<String> corpusList;
@NameInMap("Description")
public String description;
@NameInMap("Icon")
public String icon;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Name")
public String name;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("SceneId")
public String sceneId;
public static ImportHotelConfigRequestImportHotelConfigRcuCustomScenes build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigRequestImportHotelConfigRcuCustomScenes self = new ImportHotelConfigRequestImportHotelConfigRcuCustomScenes();
return TeaModel.build(map, self);
}
public ImportHotelConfigRequestImportHotelConfigRcuCustomScenes setCorpusList(java.util.List<String> corpusList) {
this.corpusList = corpusList;
return this;
}
public java.util.List<String> getCorpusList() {
return this.corpusList;
}
public ImportHotelConfigRequestImportHotelConfigRcuCustomScenes setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ImportHotelConfigRequestImportHotelConfigRcuCustomScenes setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ImportHotelConfigRequestImportHotelConfigRcuCustomScenes setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ImportHotelConfigRequestImportHotelConfigRcuCustomScenes setSceneId(String sceneId) {
this.sceneId = sceneId;
return this;
}
public String getSceneId() {
return this.sceneId;
}
}
public static class ImportHotelConfigRequestImportHotelConfig extends TeaModel {
@NameInMap("RcuCustomScenes")
public java.util.List<ImportHotelConfigRequestImportHotelConfigRcuCustomScenes> rcuCustomScenes;
public static ImportHotelConfigRequestImportHotelConfig build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigRequestImportHotelConfig self = new ImportHotelConfigRequestImportHotelConfig();
return TeaModel.build(map, self);
}
public ImportHotelConfigRequestImportHotelConfig setRcuCustomScenes(java.util.List<ImportHotelConfigRequestImportHotelConfigRcuCustomScenes> rcuCustomScenes) {
this.rcuCustomScenes = rcuCustomScenes;
return this;
}
public java.util.List<ImportHotelConfigRequestImportHotelConfigRcuCustomScenes> getRcuCustomScenes() {
return this.rcuCustomScenes;
}
}
}
|
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/ImportHotelConfigResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportHotelConfigResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ImportHotelConfigResponseBody body;
public static ImportHotelConfigResponse build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigResponse self = new ImportHotelConfigResponse();
return TeaModel.build(map, self);
}
public ImportHotelConfigResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ImportHotelConfigResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ImportHotelConfigResponse setBody(ImportHotelConfigResponseBody body) {
this.body = body;
return this;
}
public ImportHotelConfigResponseBody 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/ImportHotelConfigResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportHotelConfigResponseBody 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 ImportHotelConfigResponseBody build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigResponseBody self = new ImportHotelConfigResponseBody();
return TeaModel.build(map, self);
}
public ImportHotelConfigResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ImportHotelConfigResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ImportHotelConfigResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public ImportHotelConfigResponseBody 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/ImportHotelConfigShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportHotelConfigShrinkRequest 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>
*/
@NameInMap("ImportHotelConfig")
public String importHotelConfigShrink;
public static ImportHotelConfigShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ImportHotelConfigShrinkRequest self = new ImportHotelConfigShrinkRequest();
return TeaModel.build(map, self);
}
public ImportHotelConfigShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ImportHotelConfigShrinkRequest setImportHotelConfigShrink(String importHotelConfigShrink) {
this.importHotelConfigShrink = importHotelConfigShrink;
return this;
}
public String getImportHotelConfigShrink() {
return this.importHotelConfigShrink;
}
}
|
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/ImportRoomControlDevicesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomControlDevicesHeaders 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 ImportRoomControlDevicesHeaders build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesHeaders self = new ImportRoomControlDevicesHeaders();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ImportRoomControlDevicesHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ImportRoomControlDevicesHeaders 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/ImportRoomControlDevicesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomControlDevicesRequest extends TeaModel {
@NameInMap("EnableInfraredDeviceImport")
public String enableInfraredDeviceImport;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>vdgrefds</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("LocationDevices")
public java.util.List<ImportRoomControlDevicesRequestLocationDevices> locationDevices;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static ImportRoomControlDevicesRequest build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesRequest self = new ImportRoomControlDevicesRequest();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesRequest setEnableInfraredDeviceImport(String enableInfraredDeviceImport) {
this.enableInfraredDeviceImport = enableInfraredDeviceImport;
return this;
}
public String getEnableInfraredDeviceImport() {
return this.enableInfraredDeviceImport;
}
public ImportRoomControlDevicesRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ImportRoomControlDevicesRequest setLocationDevices(java.util.List<ImportRoomControlDevicesRequestLocationDevices> locationDevices) {
this.locationDevices = locationDevices;
return this;
}
public java.util.List<ImportRoomControlDevicesRequestLocationDevices> getLocationDevices() {
return this.locationDevices;
}
public ImportRoomControlDevicesRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public static class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList 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("Location")
public String location;
public static ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList self = new ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList setAliasList(java.util.List<String> aliasList) {
this.aliasList = aliasList;
return this;
}
public java.util.List<String> getAliasList() {
return this.aliasList;
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList setDeviceIndex(Integer deviceIndex) {
this.deviceIndex = deviceIndex;
return this;
}
public Integer getDeviceIndex() {
return this.deviceIndex;
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
}
public static class ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt extends TeaModel {
@NameInMap("SwitchList")
public java.util.List<ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList> switchList;
public static ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt self = new ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt setSwitchList(java.util.List<ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList> switchList) {
this.switchList = switchList;
return this;
}
public java.util.List<ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExtSwitchList> getSwitchList() {
return this.switchList;
}
}
public static class ImportRoomControlDevicesRequestLocationDevicesDevices extends TeaModel {
@NameInMap("AliasList")
public java.util.List<String> aliasList;
@NameInMap("Brand")
public String brand;
@NameInMap("City")
public String city;
@NameInMap("ConnectType")
public String connectType;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceName")
public String deviceName;
@NameInMap("Dn")
public String dn;
@NameInMap("InfraredId")
public String infraredId;
@NameInMap("InfraredIndex")
public String infraredIndex;
@NameInMap("InfraredVersion")
public String infraredVersion;
@NameInMap("MultiKeySwitchExt")
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt multiKeySwitchExt;
/**
* <p>This parameter is required.</p>
*
* <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;
@NameInMap("Province")
public String province;
@NameInMap("ServiceProvider")
public String serviceProvider;
public static ImportRoomControlDevicesRequestLocationDevicesDevices build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesRequestLocationDevicesDevices self = new ImportRoomControlDevicesRequestLocationDevicesDevices();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setAliasList(java.util.List<String> aliasList) {
this.aliasList = aliasList;
return this;
}
public java.util.List<String> getAliasList() {
return this.aliasList;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setBrand(String brand) {
this.brand = brand;
return this;
}
public String getBrand() {
return this.brand;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setCity(String city) {
this.city = city;
return this;
}
public String getCity() {
return this.city;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setConnectType(String connectType) {
this.connectType = connectType;
return this;
}
public String getConnectType() {
return this.connectType;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setDeviceName(String deviceName) {
this.deviceName = deviceName;
return this;
}
public String getDeviceName() {
return this.deviceName;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setDn(String dn) {
this.dn = dn;
return this;
}
public String getDn() {
return this.dn;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setInfraredId(String infraredId) {
this.infraredId = infraredId;
return this;
}
public String getInfraredId() {
return this.infraredId;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setInfraredIndex(String infraredIndex) {
this.infraredIndex = infraredIndex;
return this;
}
public String getInfraredIndex() {
return this.infraredIndex;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setInfraredVersion(String infraredVersion) {
this.infraredVersion = infraredVersion;
return this;
}
public String getInfraredVersion() {
return this.infraredVersion;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setMultiKeySwitchExt(ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt multiKeySwitchExt) {
this.multiKeySwitchExt = multiKeySwitchExt;
return this;
}
public ImportRoomControlDevicesRequestLocationDevicesDevicesMultiKeySwitchExt getMultiKeySwitchExt() {
return this.multiKeySwitchExt;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setNumber(String number) {
this.number = number;
return this;
}
public String getNumber() {
return this.number;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setPk(String pk) {
this.pk = pk;
return this;
}
public String getPk() {
return this.pk;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setProvince(String province) {
this.province = province;
return this;
}
public String getProvince() {
return this.province;
}
public ImportRoomControlDevicesRequestLocationDevicesDevices setServiceProvider(String serviceProvider) {
this.serviceProvider = serviceProvider;
return this;
}
public String getServiceProvider() {
return this.serviceProvider;
}
}
public static class ImportRoomControlDevicesRequestLocationDevices extends TeaModel {
@NameInMap("Devices")
public java.util.List<ImportRoomControlDevicesRequestLocationDevicesDevices> devices;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>room</p>
*/
@NameInMap("Location")
public String location;
@NameInMap("LocationName")
public String locationName;
public static ImportRoomControlDevicesRequestLocationDevices build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesRequestLocationDevices self = new ImportRoomControlDevicesRequestLocationDevices();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesRequestLocationDevices setDevices(java.util.List<ImportRoomControlDevicesRequestLocationDevicesDevices> devices) {
this.devices = devices;
return this;
}
public java.util.List<ImportRoomControlDevicesRequestLocationDevicesDevices> getDevices() {
return this.devices;
}
public ImportRoomControlDevicesRequestLocationDevices setLocation(String location) {
this.location = location;
return this;
}
public String getLocation() {
return this.location;
}
public ImportRoomControlDevicesRequestLocationDevices 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/ImportRoomControlDevicesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomControlDevicesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ImportRoomControlDevicesResponseBody body;
public static ImportRoomControlDevicesResponse build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesResponse self = new ImportRoomControlDevicesResponse();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ImportRoomControlDevicesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ImportRoomControlDevicesResponse setBody(ImportRoomControlDevicesResponseBody body) {
this.body = body;
return this;
}
public ImportRoomControlDevicesResponseBody 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/ImportRoomControlDevicesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomControlDevicesResponseBody 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>fdsfregtre</p>
*/
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("Result")
public Integer result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ImportRoomControlDevicesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesResponseBody self = new ImportRoomControlDevicesResponseBody();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public ImportRoomControlDevicesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ImportRoomControlDevicesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ImportRoomControlDevicesResponseBody setResult(Integer result) {
this.result = result;
return this;
}
public Integer getResult() {
return this.result;
}
public ImportRoomControlDevicesResponseBody 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/ImportRoomControlDevicesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomControlDevicesShrinkRequest extends TeaModel {
@NameInMap("EnableInfraredDeviceImport")
public String enableInfraredDeviceImport;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>vdgrefds</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("LocationDevices")
public String locationDevicesShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static ImportRoomControlDevicesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ImportRoomControlDevicesShrinkRequest self = new ImportRoomControlDevicesShrinkRequest();
return TeaModel.build(map, self);
}
public ImportRoomControlDevicesShrinkRequest setEnableInfraredDeviceImport(String enableInfraredDeviceImport) {
this.enableInfraredDeviceImport = enableInfraredDeviceImport;
return this;
}
public String getEnableInfraredDeviceImport() {
return this.enableInfraredDeviceImport;
}
public ImportRoomControlDevicesShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ImportRoomControlDevicesShrinkRequest setLocationDevicesShrink(String locationDevicesShrink) {
this.locationDevicesShrink = locationDevicesShrink;
return this;
}
public String getLocationDevicesShrink() {
return this.locationDevicesShrink;
}
public ImportRoomControlDevicesShrinkRequest 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/ImportRoomGenieScenesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomGenieScenesHeaders 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 ImportRoomGenieScenesHeaders build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesHeaders self = new ImportRoomGenieScenesHeaders();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ImportRoomGenieScenesHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ImportRoomGenieScenesHeaders 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/ImportRoomGenieScenesRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomGenieScenesRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a7a3***013</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("SceneList")
public java.util.List<ImportRoomGenieScenesRequestSceneList> sceneList;
public static ImportRoomGenieScenesRequest build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequest self = new ImportRoomGenieScenesRequest();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ImportRoomGenieScenesRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public ImportRoomGenieScenesRequest setSceneList(java.util.List<ImportRoomGenieScenesRequestSceneList> sceneList) {
this.sceneList = sceneList;
return this;
}
public java.util.List<ImportRoomGenieScenesRequestSceneList> getSceneList() {
return this.sceneList;
}
public static class ImportRoomGenieScenesRequestSceneListActionsAttributeValues extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>powerstate</p>
*/
@NameInMap("AttributeName")
public String attributeName;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("AttributeValue")
public String attributeValue;
public static ImportRoomGenieScenesRequestSceneListActionsAttributeValues build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneListActionsAttributeValues self = new ImportRoomGenieScenesRequestSceneListActionsAttributeValues();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneListActionsAttributeValues setAttributeName(String attributeName) {
this.attributeName = attributeName;
return this;
}
public String getAttributeName() {
return this.attributeName;
}
public ImportRoomGenieScenesRequestSceneListActionsAttributeValues setAttributeValue(String attributeValue) {
this.attributeValue = attributeValue;
return this;
}
public String getAttributeValue() {
return this.attributeValue;
}
}
public static class ImportRoomGenieScenesRequestSceneListActionsDevice extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>light</p>
*/
@NameInMap("Category")
public String category;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("DeviceIndex")
public Integer deviceIndex;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>3c5d2ab8f9ec</p>
*/
@NameInMap("DeviceNumber")
public String deviceNumber;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Type")
public Integer type;
public static ImportRoomGenieScenesRequestSceneListActionsDevice build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneListActionsDevice self = new ImportRoomGenieScenesRequestSceneListActionsDevice();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneListActionsDevice setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ImportRoomGenieScenesRequestSceneListActionsDevice setDeviceIndex(Integer deviceIndex) {
this.deviceIndex = deviceIndex;
return this;
}
public Integer getDeviceIndex() {
return this.deviceIndex;
}
public ImportRoomGenieScenesRequestSceneListActionsDevice setDeviceNumber(String deviceNumber) {
this.deviceNumber = deviceNumber;
return this;
}
public String getDeviceNumber() {
return this.deviceNumber;
}
public ImportRoomGenieScenesRequestSceneListActionsDevice setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}
public static class ImportRoomGenieScenesRequestSceneListActions extends TeaModel {
@NameInMap("AttributeValues")
public java.util.List<ImportRoomGenieScenesRequestSceneListActionsAttributeValues> attributeValues;
@NameInMap("Device")
public ImportRoomGenieScenesRequestSceneListActionsDevice device;
@NameInMap("Reply")
public String reply;
@NameInMap("Type")
public Integer type;
public static ImportRoomGenieScenesRequestSceneListActions build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneListActions self = new ImportRoomGenieScenesRequestSceneListActions();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneListActions setAttributeValues(java.util.List<ImportRoomGenieScenesRequestSceneListActionsAttributeValues> attributeValues) {
this.attributeValues = attributeValues;
return this;
}
public java.util.List<ImportRoomGenieScenesRequestSceneListActionsAttributeValues> getAttributeValues() {
return this.attributeValues;
}
public ImportRoomGenieScenesRequestSceneListActions setDevice(ImportRoomGenieScenesRequestSceneListActionsDevice device) {
this.device = device;
return this;
}
public ImportRoomGenieScenesRequestSceneListActionsDevice getDevice() {
return this.device;
}
public ImportRoomGenieScenesRequestSceneListActions setReply(String reply) {
this.reply = reply;
return this;
}
public String getReply() {
return this.reply;
}
public ImportRoomGenieScenesRequestSceneListActions setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}
public static class ImportRoomGenieScenesRequestSceneListTriggersAttributeValues extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("AttributeName")
public String attributeName;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("AttributeValue")
public String attributeValue;
public static ImportRoomGenieScenesRequestSceneListTriggersAttributeValues build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneListTriggersAttributeValues self = new ImportRoomGenieScenesRequestSceneListTriggersAttributeValues();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneListTriggersAttributeValues setAttributeName(String attributeName) {
this.attributeName = attributeName;
return this;
}
public String getAttributeName() {
return this.attributeName;
}
public ImportRoomGenieScenesRequestSceneListTriggersAttributeValues setAttributeValue(String attributeValue) {
this.attributeValue = attributeValue;
return this;
}
public String getAttributeValue() {
return this.attributeValue;
}
}
public static class ImportRoomGenieScenesRequestSceneListTriggersDevice extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Category")
public String category;
@NameInMap("DeviceIndex")
public String deviceIndex;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("DeviceNumber")
public String deviceNumber;
public static ImportRoomGenieScenesRequestSceneListTriggersDevice build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneListTriggersDevice self = new ImportRoomGenieScenesRequestSceneListTriggersDevice();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneListTriggersDevice setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ImportRoomGenieScenesRequestSceneListTriggersDevice setDeviceIndex(String deviceIndex) {
this.deviceIndex = deviceIndex;
return this;
}
public String getDeviceIndex() {
return this.deviceIndex;
}
public ImportRoomGenieScenesRequestSceneListTriggersDevice setDeviceNumber(String deviceNumber) {
this.deviceNumber = deviceNumber;
return this;
}
public String getDeviceNumber() {
return this.deviceNumber;
}
}
public static class ImportRoomGenieScenesRequestSceneListTriggers extends TeaModel {
@NameInMap("AttributeValues")
public java.util.List<ImportRoomGenieScenesRequestSceneListTriggersAttributeValues> attributeValues;
@NameInMap("CorpusList")
public java.util.List<String> corpusList;
@NameInMap("Device")
public ImportRoomGenieScenesRequestSceneListTriggersDevice device;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Type")
public Integer type;
public static ImportRoomGenieScenesRequestSceneListTriggers build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneListTriggers self = new ImportRoomGenieScenesRequestSceneListTriggers();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneListTriggers setAttributeValues(java.util.List<ImportRoomGenieScenesRequestSceneListTriggersAttributeValues> attributeValues) {
this.attributeValues = attributeValues;
return this;
}
public java.util.List<ImportRoomGenieScenesRequestSceneListTriggersAttributeValues> getAttributeValues() {
return this.attributeValues;
}
public ImportRoomGenieScenesRequestSceneListTriggers setCorpusList(java.util.List<String> corpusList) {
this.corpusList = corpusList;
return this;
}
public java.util.List<String> getCorpusList() {
return this.corpusList;
}
public ImportRoomGenieScenesRequestSceneListTriggers setDevice(ImportRoomGenieScenesRequestSceneListTriggersDevice device) {
this.device = device;
return this;
}
public ImportRoomGenieScenesRequestSceneListTriggersDevice getDevice() {
return this.device;
}
public ImportRoomGenieScenesRequestSceneListTriggers setType(Integer type) {
this.type = type;
return this;
}
public Integer getType() {
return this.type;
}
}
public static class ImportRoomGenieScenesRequestSceneList extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Actions")
public java.util.List<ImportRoomGenieScenesRequestSceneListActions> actions;
@NameInMap("Description")
public String description;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Display")
public Boolean display;
/**
* <strong>example:</strong>
* <p><a href="http://xxx.com/yyy.png">http://xxx.com/yyy.png</a></p>
*/
@NameInMap("Icon")
public String icon;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("SceneName")
public String sceneName;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("TriggerLogical")
public Integer triggerLogical;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Triggers")
public java.util.List<ImportRoomGenieScenesRequestSceneListTriggers> triggers;
public static ImportRoomGenieScenesRequestSceneList build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesRequestSceneList self = new ImportRoomGenieScenesRequestSceneList();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesRequestSceneList setActions(java.util.List<ImportRoomGenieScenesRequestSceneListActions> actions) {
this.actions = actions;
return this;
}
public java.util.List<ImportRoomGenieScenesRequestSceneListActions> getActions() {
return this.actions;
}
public ImportRoomGenieScenesRequestSceneList setDescription(String description) {
this.description = description;
return this;
}
public String getDescription() {
return this.description;
}
public ImportRoomGenieScenesRequestSceneList setDisplay(Boolean display) {
this.display = display;
return this;
}
public Boolean getDisplay() {
return this.display;
}
public ImportRoomGenieScenesRequestSceneList setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ImportRoomGenieScenesRequestSceneList setSceneName(String sceneName) {
this.sceneName = sceneName;
return this;
}
public String getSceneName() {
return this.sceneName;
}
public ImportRoomGenieScenesRequestSceneList setTriggerLogical(Integer triggerLogical) {
this.triggerLogical = triggerLogical;
return this;
}
public Integer getTriggerLogical() {
return this.triggerLogical;
}
public ImportRoomGenieScenesRequestSceneList setTriggers(java.util.List<ImportRoomGenieScenesRequestSceneListTriggers> triggers) {
this.triggers = triggers;
return this;
}
public java.util.List<ImportRoomGenieScenesRequestSceneListTriggers> getTriggers() {
return this.triggers;
}
}
}
|
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/ImportRoomGenieScenesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomGenieScenesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ImportRoomGenieScenesResponseBody body;
public static ImportRoomGenieScenesResponse build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesResponse self = new ImportRoomGenieScenesResponse();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ImportRoomGenieScenesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ImportRoomGenieScenesResponse setBody(ImportRoomGenieScenesResponseBody body) {
this.body = body;
return this;
}
public ImportRoomGenieScenesResponseBody 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/ImportRoomGenieScenesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomGenieScenesResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>73C6***E6FA</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 ImportRoomGenieScenesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesResponseBody self = new ImportRoomGenieScenesResponseBody();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ImportRoomGenieScenesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ImportRoomGenieScenesResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public ImportRoomGenieScenesResponseBody 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/ImportRoomGenieScenesShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ImportRoomGenieScenesShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>a7a3***013</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("SceneList")
public String sceneListShrink;
public static ImportRoomGenieScenesShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ImportRoomGenieScenesShrinkRequest self = new ImportRoomGenieScenesShrinkRequest();
return TeaModel.build(map, self);
}
public ImportRoomGenieScenesShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ImportRoomGenieScenesShrinkRequest setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public ImportRoomGenieScenesShrinkRequest setSceneListShrink(String sceneListShrink) {
this.sceneListShrink = sceneListShrink;
return this;
}
public String getSceneListShrink() {
return this.sceneListShrink;
}
}
|
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/InsertHotelSceneBookItemHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InsertHotelSceneBookItemHeaders 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 InsertHotelSceneBookItemHeaders build(java.util.Map<String, ?> map) throws Exception {
InsertHotelSceneBookItemHeaders self = new InsertHotelSceneBookItemHeaders();
return TeaModel.build(map, self);
}
public InsertHotelSceneBookItemHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public InsertHotelSceneBookItemHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public InsertHotelSceneBookItemHeaders 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/InsertHotelSceneBookItemRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InsertHotelSceneBookItemRequest extends TeaModel {
/**
* <p>addHotelSceneItemReq</p>
* <p>This parameter is required.</p>
*/
@NameInMap("AddHotelSceneItemReq")
public InsertHotelSceneBookItemRequestAddHotelSceneItemReq addHotelSceneItemReq;
/**
* <p>hotelID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80d84ea8ed9e422fbad52715c8fc56f1</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static InsertHotelSceneBookItemRequest build(java.util.Map<String, ?> map) throws Exception {
InsertHotelSceneBookItemRequest self = new InsertHotelSceneBookItemRequest();
return TeaModel.build(map, self);
}
public InsertHotelSceneBookItemRequest setAddHotelSceneItemReq(InsertHotelSceneBookItemRequestAddHotelSceneItemReq addHotelSceneItemReq) {
this.addHotelSceneItemReq = addHotelSceneItemReq;
return this;
}
public InsertHotelSceneBookItemRequestAddHotelSceneItemReq getAddHotelSceneItemReq() {
return this.addHotelSceneItemReq;
}
public InsertHotelSceneBookItemRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public static class InsertHotelSceneBookItemRequestAddHotelSceneItemReq extends TeaModel {
/**
* <p>icon</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p><a href="https://ailabs.alibabausercontent.com/platform/28d7a91e3c05db3855725fc39e0387e7/welcome_audios/aa918294b6ca3aa115c51135bf9b80cb/l9f996sq.png">https://ailabs.alibabausercontent.com/platform/28d7a91e3c05db3855725fc39e0387e7/welcome_audios/aa918294b6ca3aa115c51135bf9b80cb/l9f996sq.png</a></p>
*/
@NameInMap("Icon")
public String icon;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>青椒肉丝</p>
*/
@NameInMap("Name")
public String name;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1250</p>
*/
@NameInMap("Price")
public Long price;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>FOOD</p>
*/
@NameInMap("Type")
public String type;
public static InsertHotelSceneBookItemRequestAddHotelSceneItemReq build(java.util.Map<String, ?> map) throws Exception {
InsertHotelSceneBookItemRequestAddHotelSceneItemReq self = new InsertHotelSceneBookItemRequestAddHotelSceneItemReq();
return TeaModel.build(map, self);
}
public InsertHotelSceneBookItemRequestAddHotelSceneItemReq setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public InsertHotelSceneBookItemRequestAddHotelSceneItemReq setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public InsertHotelSceneBookItemRequestAddHotelSceneItemReq setPrice(Long price) {
this.price = price;
return this;
}
public Long getPrice() {
return this.price;
}
public InsertHotelSceneBookItemRequestAddHotelSceneItemReq 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/InsertHotelSceneBookItemResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InsertHotelSceneBookItemResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public InsertHotelSceneBookItemResponseBody body;
public static InsertHotelSceneBookItemResponse build(java.util.Map<String, ?> map) throws Exception {
InsertHotelSceneBookItemResponse self = new InsertHotelSceneBookItemResponse();
return TeaModel.build(map, self);
}
public InsertHotelSceneBookItemResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public InsertHotelSceneBookItemResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public InsertHotelSceneBookItemResponse setBody(InsertHotelSceneBookItemResponseBody body) {
this.body = body;
return this;
}
public InsertHotelSceneBookItemResponseBody 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/InsertHotelSceneBookItemResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InsertHotelSceneBookItemResponseBody 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>36FB***80C2</p>
*/
@NameInMap("RequestId")
public String requestId;
/**
* <strong>example:</strong>
* <p>true</p>
*/
@NameInMap("Result")
public Boolean result;
public static InsertHotelSceneBookItemResponseBody build(java.util.Map<String, ?> map) throws Exception {
InsertHotelSceneBookItemResponseBody self = new InsertHotelSceneBookItemResponseBody();
return TeaModel.build(map, self);
}
public InsertHotelSceneBookItemResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public InsertHotelSceneBookItemResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public InsertHotelSceneBookItemResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public InsertHotelSceneBookItemResponseBody 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/InsertHotelSceneBookItemShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InsertHotelSceneBookItemShrinkRequest extends TeaModel {
/**
* <p>addHotelSceneItemReq</p>
* <p>This parameter is required.</p>
*/
@NameInMap("AddHotelSceneItemReq")
public String addHotelSceneItemReqShrink;
/**
* <p>hotelID</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80d84ea8ed9e422fbad52715c8fc56f1</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static InsertHotelSceneBookItemShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
InsertHotelSceneBookItemShrinkRequest self = new InsertHotelSceneBookItemShrinkRequest();
return TeaModel.build(map, self);
}
public InsertHotelSceneBookItemShrinkRequest setAddHotelSceneItemReqShrink(String addHotelSceneItemReqShrink) {
this.addHotelSceneItemReqShrink = addHotelSceneItemReqShrink;
return this;
}
public String getAddHotelSceneItemReqShrink() {
return this.addHotelSceneItemReqShrink;
}
public InsertHotelSceneBookItemShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
}
|
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/InvokeRobotPushHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InvokeRobotPushHeaders 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 InvokeRobotPushHeaders build(java.util.Map<String, ?> map) throws Exception {
InvokeRobotPushHeaders self = new InvokeRobotPushHeaders();
return TeaModel.build(map, self);
}
public InvokeRobotPushHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public InvokeRobotPushHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public InvokeRobotPushHeaders 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/InvokeRobotPushRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InvokeRobotPushRequest 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>GET</p>
*/
@NameInMap("PushType")
public String pushType;
@NameInMap("RoomName")
public String roomName;
/**
* <strong>example:</strong>
* <p>1211</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static InvokeRobotPushRequest build(java.util.Map<String, ?> map) throws Exception {
InvokeRobotPushRequest self = new InvokeRobotPushRequest();
return TeaModel.build(map, self);
}
public InvokeRobotPushRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public InvokeRobotPushRequest setPushType(String pushType) {
this.pushType = pushType;
return this;
}
public String getPushType() {
return this.pushType;
}
public InvokeRobotPushRequest setRoomName(String roomName) {
this.roomName = roomName;
return this;
}
public String getRoomName() {
return this.roomName;
}
public InvokeRobotPushRequest 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/InvokeRobotPushResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InvokeRobotPushResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public InvokeRobotPushResponseBody body;
public static InvokeRobotPushResponse build(java.util.Map<String, ?> map) throws Exception {
InvokeRobotPushResponse self = new InvokeRobotPushResponse();
return TeaModel.build(map, self);
}
public InvokeRobotPushResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public InvokeRobotPushResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public InvokeRobotPushResponse setBody(InvokeRobotPushResponseBody body) {
this.body = body;
return this;
}
public InvokeRobotPushResponseBody 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/InvokeRobotPushResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class InvokeRobotPushResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>73C6***E6FA</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 InvokeRobotPushResponseBody build(java.util.Map<String, ?> map) throws Exception {
InvokeRobotPushResponseBody self = new InvokeRobotPushResponseBody();
return TeaModel.build(map, self);
}
public InvokeRobotPushResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public InvokeRobotPushResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public InvokeRobotPushResponseBody setResult(Boolean result) {
this.result = result;
return this;
}
public Boolean getResult() {
return this.result;
}
public InvokeRobotPushResponseBody 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/ListAllProvincesHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListAllProvincesHeaders 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 ListAllProvincesHeaders build(java.util.Map<String, ?> map) throws Exception {
ListAllProvincesHeaders self = new ListAllProvincesHeaders();
return TeaModel.build(map, self);
}
public ListAllProvincesHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListAllProvincesHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListAllProvincesHeaders 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/ListAllProvincesResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListAllProvincesResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListAllProvincesResponseBody body;
public static ListAllProvincesResponse build(java.util.Map<String, ?> map) throws Exception {
ListAllProvincesResponse self = new ListAllProvincesResponse();
return TeaModel.build(map, self);
}
public ListAllProvincesResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListAllProvincesResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListAllProvincesResponse setBody(ListAllProvincesResponseBody body) {
this.body = body;
return this;
}
public ListAllProvincesResponseBody 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/ListAllProvincesResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListAllProvincesResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>00534880-4397-5134-B212-1030B7A37C27</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<String> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListAllProvincesResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListAllProvincesResponseBody self = new ListAllProvincesResponseBody();
return TeaModel.build(map, self);
}
public ListAllProvincesResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListAllProvincesResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListAllProvincesResponseBody setResult(java.util.List<String> result) {
this.result = result;
return this;
}
public java.util.List<String> getResult() {
return this.result;
}
public ListAllProvincesResponseBody 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/ListCitiesByProvinceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCitiesByProvinceHeaders 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 ListCitiesByProvinceHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCitiesByProvinceHeaders self = new ListCitiesByProvinceHeaders();
return TeaModel.build(map, self);
}
public ListCitiesByProvinceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCitiesByProvinceHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListCitiesByProvinceHeaders 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/ListCitiesByProvinceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCitiesByProvinceRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Province")
public String province;
public static ListCitiesByProvinceRequest build(java.util.Map<String, ?> map) throws Exception {
ListCitiesByProvinceRequest self = new ListCitiesByProvinceRequest();
return TeaModel.build(map, self);
}
public ListCitiesByProvinceRequest 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/ListCitiesByProvinceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCitiesByProvinceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCitiesByProvinceResponseBody body;
public static ListCitiesByProvinceResponse build(java.util.Map<String, ?> map) throws Exception {
ListCitiesByProvinceResponse self = new ListCitiesByProvinceResponse();
return TeaModel.build(map, self);
}
public ListCitiesByProvinceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCitiesByProvinceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCitiesByProvinceResponse setBody(ListCitiesByProvinceResponseBody body) {
this.body = body;
return this;
}
public ListCitiesByProvinceResponseBody 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/ListCitiesByProvinceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCitiesByProvinceResponseBody 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.List<String> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListCitiesByProvinceResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCitiesByProvinceResponseBody self = new ListCitiesByProvinceResponseBody();
return TeaModel.build(map, self);
}
public ListCitiesByProvinceResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCitiesByProvinceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCitiesByProvinceResponseBody setResult(java.util.List<String> result) {
this.result = result;
return this;
}
public java.util.List<String> getResult() {
return this.result;
}
public ListCitiesByProvinceResponseBody 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/ListCustomQAHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCustomQAHeaders 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 ListCustomQAHeaders build(java.util.Map<String, ?> map) throws Exception {
ListCustomQAHeaders self = new ListCustomQAHeaders();
return TeaModel.build(map, self);
}
public ListCustomQAHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListCustomQAHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListCustomQAHeaders 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/ListCustomQARequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCustomQARequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>520a0c0***5eb</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("Keyword")
public String keyword;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public ListCustomQARequestPage page;
public static ListCustomQARequest build(java.util.Map<String, ?> map) throws Exception {
ListCustomQARequest self = new ListCustomQARequest();
return TeaModel.build(map, self);
}
public ListCustomQARequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListCustomQARequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public ListCustomQARequest setPage(ListCustomQARequestPage page) {
this.page = page;
return this;
}
public ListCustomQARequestPage getPage() {
return this.page;
}
public static class ListCustomQARequestPage 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 ListCustomQARequestPage build(java.util.Map<String, ?> map) throws Exception {
ListCustomQARequestPage self = new ListCustomQARequestPage();
return TeaModel.build(map, self);
}
public ListCustomQARequestPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListCustomQARequestPage 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/ListCustomQAResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCustomQAResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListCustomQAResponseBody body;
public static ListCustomQAResponse build(java.util.Map<String, ?> map) throws Exception {
ListCustomQAResponse self = new ListCustomQAResponse();
return TeaModel.build(map, self);
}
public ListCustomQAResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListCustomQAResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListCustomQAResponse setBody(ListCustomQAResponseBody body) {
this.body = body;
return this;
}
public ListCustomQAResponseBody 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/ListCustomQAResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCustomQAResponseBody extends TeaModel {
/**
* <strong>example:</strong>
* <p>success</p>
*/
@NameInMap("Message")
public String message;
@NameInMap("Page")
public ListCustomQAResponseBodyPage page;
/**
* <strong>example:</strong>
* <p>0EC7***726E</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListCustomQAResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListCustomQAResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListCustomQAResponseBody self = new ListCustomQAResponseBody();
return TeaModel.build(map, self);
}
public ListCustomQAResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListCustomQAResponseBody setPage(ListCustomQAResponseBodyPage page) {
this.page = page;
return this;
}
public ListCustomQAResponseBodyPage getPage() {
return this.page;
}
public ListCustomQAResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListCustomQAResponseBody setResult(java.util.List<ListCustomQAResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListCustomQAResponseBodyResult> getResult() {
return this.result;
}
public ListCustomQAResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class ListCustomQAResponseBodyPage 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>21</p>
*/
@NameInMap("Total")
public Integer total;
public static ListCustomQAResponseBodyPage build(java.util.Map<String, ?> map) throws Exception {
ListCustomQAResponseBodyPage self = new ListCustomQAResponseBodyPage();
return TeaModel.build(map, self);
}
public ListCustomQAResponseBodyPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListCustomQAResponseBodyPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListCustomQAResponseBodyPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
}
public static class ListCustomQAResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>22;11</p>
*/
@NameInMap("Answers")
public String answers;
/**
* <strong>example:</strong>
* <p>2023-01-10 10:01:59</p>
*/
@NameInMap("CreateTime")
public String createTime;
/**
* <strong>example:</strong>
* <p>111</p>
*/
@NameInMap("CustomQAId")
public String customQAId;
/**
* <strong>example:</strong>
* <p>a7***83</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>22;11</p>
*/
@NameInMap("KeyWords")
public String keyWords;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("MajorQuestion")
public String majorQuestion;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Status")
public Integer status;
/**
* <strong>example:</strong>
* <p>22;11</p>
*/
@NameInMap("SupplementaryQuestion")
public String supplementaryQuestion;
/**
* <strong>example:</strong>
* <p>2023-01-10 10:01:59</p>
*/
@NameInMap("UpdateTime")
public String updateTime;
public static ListCustomQAResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListCustomQAResponseBodyResult self = new ListCustomQAResponseBodyResult();
return TeaModel.build(map, self);
}
public ListCustomQAResponseBodyResult setAnswers(String answers) {
this.answers = answers;
return this;
}
public String getAnswers() {
return this.answers;
}
public ListCustomQAResponseBodyResult setCreateTime(String createTime) {
this.createTime = createTime;
return this;
}
public String getCreateTime() {
return this.createTime;
}
public ListCustomQAResponseBodyResult setCustomQAId(String customQAId) {
this.customQAId = customQAId;
return this;
}
public String getCustomQAId() {
return this.customQAId;
}
public ListCustomQAResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListCustomQAResponseBodyResult setKeyWords(String keyWords) {
this.keyWords = keyWords;
return this;
}
public String getKeyWords() {
return this.keyWords;
}
public ListCustomQAResponseBodyResult setMajorQuestion(String majorQuestion) {
this.majorQuestion = majorQuestion;
return this;
}
public String getMajorQuestion() {
return this.majorQuestion;
}
public ListCustomQAResponseBodyResult setStatus(Integer status) {
this.status = status;
return this;
}
public Integer getStatus() {
return this.status;
}
public ListCustomQAResponseBodyResult setSupplementaryQuestion(String supplementaryQuestion) {
this.supplementaryQuestion = supplementaryQuestion;
return this;
}
public String getSupplementaryQuestion() {
return this.supplementaryQuestion;
}
public ListCustomQAResponseBodyResult setUpdateTime(String updateTime) {
this.updateTime = updateTime;
return this;
}
public String getUpdateTime() {
return this.updateTime;
}
}
}
|
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/ListCustomQAShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListCustomQAShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>520a0c0***5eb</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <hr>
*/
@NameInMap("Keyword")
public String keyword;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public String pageShrink;
public static ListCustomQAShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListCustomQAShrinkRequest self = new ListCustomQAShrinkRequest();
return TeaModel.build(map, self);
}
public ListCustomQAShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListCustomQAShrinkRequest setKeyword(String keyword) {
this.keyword = keyword;
return this;
}
public String getKeyword() {
return this.keyword;
}
public ListCustomQAShrinkRequest 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/ListDialogueTemplateHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListDialogueTemplateHeaders 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 ListDialogueTemplateHeaders build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateHeaders self = new ListDialogueTemplateHeaders();
return TeaModel.build(map, self);
}
public ListDialogueTemplateHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListDialogueTemplateHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListDialogueTemplateHeaders 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/ListDialogueTemplateRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListDialogueTemplateRequest extends TeaModel {
/**
* <p>hotelId</p>
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>80d84ea8ed9e422fbad52715c8fc56f1</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static ListDialogueTemplateRequest build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateRequest self = new ListDialogueTemplateRequest();
return TeaModel.build(map, self);
}
public ListDialogueTemplateRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
}
|
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/ListDialogueTemplateResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListDialogueTemplateResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListDialogueTemplateResponseBody body;
public static ListDialogueTemplateResponse build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateResponse self = new ListDialogueTemplateResponse();
return TeaModel.build(map, self);
}
public ListDialogueTemplateResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListDialogueTemplateResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListDialogueTemplateResponse setBody(ListDialogueTemplateResponseBody body) {
this.body = body;
return this;
}
public ListDialogueTemplateResponseBody 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/ListDialogueTemplateResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListDialogueTemplateResponseBody 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<ListDialogueTemplateResponseBodyResult> result;
public static ListDialogueTemplateResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateResponseBody self = new ListDialogueTemplateResponseBody();
return TeaModel.build(map, self);
}
public ListDialogueTemplateResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListDialogueTemplateResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListDialogueTemplateResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListDialogueTemplateResponseBody setResult(java.util.List<ListDialogueTemplateResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListDialogueTemplateResponseBodyResult> getResult() {
return this.result;
}
public static class ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate extends TeaModel {
/**
* <strong>example:</strong>
* <p>${goodsName}${price}元,请问需要服务员送来吗?</p>
*/
@NameInMap("NonzeroPriceYesAnswer")
public String nonzeroPriceYesAnswer;
/**
* <strong>example:</strong>
* <p>对不起,暂时不提供此物品。</p>
*/
@NameInMap("ZeroPriceNoAnswer")
public String zeroPriceNoAnswer;
/**
* <strong>example:</strong>
* <p>好的,服务员会尽快送来。</p>
*/
@NameInMap("ZeroPriceYesAnswer")
public String zeroPriceYesAnswer;
public static ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate self = new ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate();
return TeaModel.build(map, self);
}
public ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate setNonzeroPriceYesAnswer(String nonzeroPriceYesAnswer) {
this.nonzeroPriceYesAnswer = nonzeroPriceYesAnswer;
return this;
}
public String getNonzeroPriceYesAnswer() {
return this.nonzeroPriceYesAnswer;
}
public ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate setZeroPriceNoAnswer(String zeroPriceNoAnswer) {
this.zeroPriceNoAnswer = zeroPriceNoAnswer;
return this;
}
public String getZeroPriceNoAnswer() {
return this.zeroPriceNoAnswer;
}
public ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate setZeroPriceYesAnswer(String zeroPriceYesAnswer) {
this.zeroPriceYesAnswer = zeroPriceYesAnswer;
return this;
}
public String getZeroPriceYesAnswer() {
return this.zeroPriceYesAnswer;
}
}
public static class ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate extends TeaModel {
/**
* <strong>example:</strong>
* <p>好的,已取消。</p>
*/
@NameInMap("NonzeroPriceNoAnswer")
public String nonzeroPriceNoAnswer;
/**
* <strong>example:</strong>
* <p>好的,服务员会尽快送来${goodsName}</p>
*/
@NameInMap("NonzeroPriceYesAnswer")
public String nonzeroPriceYesAnswer;
public static ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate self = new ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate();
return TeaModel.build(map, self);
}
public ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate setNonzeroPriceNoAnswer(String nonzeroPriceNoAnswer) {
this.nonzeroPriceNoAnswer = nonzeroPriceNoAnswer;
return this;
}
public String getNonzeroPriceNoAnswer() {
return this.nonzeroPriceNoAnswer;
}
public ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate setNonzeroPriceYesAnswer(String nonzeroPriceYesAnswer) {
this.nonzeroPriceYesAnswer = nonzeroPriceYesAnswer;
return this;
}
public String getNonzeroPriceYesAnswer() {
return this.nonzeroPriceYesAnswer;
}
}
public static class ListDialogueTemplateResponseBodyResultTemplateDetail extends TeaModel {
@NameInMap("FirstDialogueTemplate")
public ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate firstDialogueTemplate;
@NameInMap("SecondDialogueTemplate")
public ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate secondDialogueTemplate;
public static ListDialogueTemplateResponseBodyResultTemplateDetail build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateResponseBodyResultTemplateDetail self = new ListDialogueTemplateResponseBodyResultTemplateDetail();
return TeaModel.build(map, self);
}
public ListDialogueTemplateResponseBodyResultTemplateDetail setFirstDialogueTemplate(ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate firstDialogueTemplate) {
this.firstDialogueTemplate = firstDialogueTemplate;
return this;
}
public ListDialogueTemplateResponseBodyResultTemplateDetailFirstDialogueTemplate getFirstDialogueTemplate() {
return this.firstDialogueTemplate;
}
public ListDialogueTemplateResponseBodyResultTemplateDetail setSecondDialogueTemplate(ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate secondDialogueTemplate) {
this.secondDialogueTemplate = secondDialogueTemplate;
return this;
}
public ListDialogueTemplateResponseBodyResultTemplateDetailSecondDialogueTemplate getSecondDialogueTemplate() {
return this.secondDialogueTemplate;
}
}
public static class ListDialogueTemplateResponseBodyResult extends TeaModel {
@NameInMap("TemplateDetail")
public ListDialogueTemplateResponseBodyResultTemplateDetail templateDetail;
/**
* <strong>example:</strong>
* <p>4</p>
*/
@NameInMap("TemplateId")
public Long templateId;
/**
* <strong>example:</strong>
* <p>物品多轮模板</p>
*/
@NameInMap("TemplateName")
public String templateName;
/**
* <strong>example:</strong>
* <p>GOODS</p>
*/
@NameInMap("Type")
public String type;
public static ListDialogueTemplateResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListDialogueTemplateResponseBodyResult self = new ListDialogueTemplateResponseBodyResult();
return TeaModel.build(map, self);
}
public ListDialogueTemplateResponseBodyResult setTemplateDetail(ListDialogueTemplateResponseBodyResultTemplateDetail templateDetail) {
this.templateDetail = templateDetail;
return this;
}
public ListDialogueTemplateResponseBodyResultTemplateDetail getTemplateDetail() {
return this.templateDetail;
}
public ListDialogueTemplateResponseBodyResult setTemplateId(Long templateId) {
this.templateId = templateId;
return this;
}
public Long getTemplateId() {
return this.templateId;
}
public ListDialogueTemplateResponseBodyResult setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
public ListDialogueTemplateResponseBodyResult 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/ListHotelAlarmHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelAlarmHeaders 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 ListHotelAlarmHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmHeaders self = new ListHotelAlarmHeaders();
return TeaModel.build(map, self);
}
public ListHotelAlarmHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelAlarmHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelAlarmHeaders 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/ListHotelAlarmRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelAlarmRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>a7a3***013</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("Rooms")
public java.util.List<String> rooms;
public static ListHotelAlarmRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmRequest self = new ListHotelAlarmRequest();
return TeaModel.build(map, self);
}
public ListHotelAlarmRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelAlarmRequest setRooms(java.util.List<String> rooms) {
this.rooms = rooms;
return this;
}
public java.util.List<String> getRooms() {
return this.rooms;
}
}
|
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/ListHotelAlarmResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelAlarmResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelAlarmResponseBody body;
public static ListHotelAlarmResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmResponse self = new ListHotelAlarmResponse();
return TeaModel.build(map, self);
}
public ListHotelAlarmResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelAlarmResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelAlarmResponse setBody(ListHotelAlarmResponseBody body) {
this.body = body;
return this;
}
public ListHotelAlarmResponseBody 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/ListHotelAlarmResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelAlarmResponseBody extends TeaModel {
@NameInMap("Extentions")
public java.util.Map<String, ?> extentions;
@NameInMap("Message")
public String message;
/**
* <strong>example:</strong>
* <p>43***881</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListHotelAlarmResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListHotelAlarmResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmResponseBody self = new ListHotelAlarmResponseBody();
return TeaModel.build(map, self);
}
public ListHotelAlarmResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public ListHotelAlarmResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelAlarmResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelAlarmResponseBody setResult(java.util.List<ListHotelAlarmResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListHotelAlarmResponseBodyResult> getResult() {
return this.result;
}
public ListHotelAlarmResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class ListHotelAlarmResponseBodyResultScheduleInfoOnce extends TeaModel {
/**
* <strong>example:</strong>
* <p>20</p>
*/
@NameInMap("Day")
public Integer day;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("Hour")
public Integer hour;
/**
* <strong>example:</strong>
* <p>30</p>
*/
@NameInMap("Minute")
public Integer minute;
/**
* <strong>example:</strong>
* <p>9</p>
*/
@NameInMap("Month")
public Integer month;
/**
* <strong>example:</strong>
* <p>2022</p>
*/
@NameInMap("Year")
public Integer year;
public static ListHotelAlarmResponseBodyResultScheduleInfoOnce build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmResponseBodyResultScheduleInfoOnce self = new ListHotelAlarmResponseBodyResultScheduleInfoOnce();
return TeaModel.build(map, self);
}
public ListHotelAlarmResponseBodyResultScheduleInfoOnce setDay(Integer day) {
this.day = day;
return this;
}
public Integer getDay() {
return this.day;
}
public ListHotelAlarmResponseBodyResultScheduleInfoOnce setHour(Integer hour) {
this.hour = hour;
return this;
}
public Integer getHour() {
return this.hour;
}
public ListHotelAlarmResponseBodyResultScheduleInfoOnce setMinute(Integer minute) {
this.minute = minute;
return this;
}
public Integer getMinute() {
return this.minute;
}
public ListHotelAlarmResponseBodyResultScheduleInfoOnce setMonth(Integer month) {
this.month = month;
return this;
}
public Integer getMonth() {
return this.month;
}
public ListHotelAlarmResponseBodyResultScheduleInfoOnce setYear(Integer year) {
this.year = year;
return this;
}
public Integer getYear() {
return this.year;
}
}
public static class ListHotelAlarmResponseBodyResultScheduleInfoWeekly extends TeaModel {
@NameInMap("DaysOfWeek")
public java.util.List<Integer> daysOfWeek;
/**
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("Hour")
public Integer hour;
/**
* <strong>example:</strong>
* <p>0</p>
*/
@NameInMap("Minute")
public Integer minute;
public static ListHotelAlarmResponseBodyResultScheduleInfoWeekly build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmResponseBodyResultScheduleInfoWeekly self = new ListHotelAlarmResponseBodyResultScheduleInfoWeekly();
return TeaModel.build(map, self);
}
public ListHotelAlarmResponseBodyResultScheduleInfoWeekly setDaysOfWeek(java.util.List<Integer> daysOfWeek) {
this.daysOfWeek = daysOfWeek;
return this;
}
public java.util.List<Integer> getDaysOfWeek() {
return this.daysOfWeek;
}
public ListHotelAlarmResponseBodyResultScheduleInfoWeekly setHour(Integer hour) {
this.hour = hour;
return this;
}
public Integer getHour() {
return this.hour;
}
public ListHotelAlarmResponseBodyResultScheduleInfoWeekly setMinute(Integer minute) {
this.minute = minute;
return this;
}
public Integer getMinute() {
return this.minute;
}
}
public static class ListHotelAlarmResponseBodyResultScheduleInfo extends TeaModel {
@NameInMap("Once")
public ListHotelAlarmResponseBodyResultScheduleInfoOnce once;
/**
* <p>ONCE, WEEKLY</p>
*
* <strong>example:</strong>
* <p>ONCE</p>
*/
@NameInMap("Type")
public String type;
@NameInMap("Weekly")
public ListHotelAlarmResponseBodyResultScheduleInfoWeekly weekly;
public static ListHotelAlarmResponseBodyResultScheduleInfo build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmResponseBodyResultScheduleInfo self = new ListHotelAlarmResponseBodyResultScheduleInfo();
return TeaModel.build(map, self);
}
public ListHotelAlarmResponseBodyResultScheduleInfo setOnce(ListHotelAlarmResponseBodyResultScheduleInfoOnce once) {
this.once = once;
return this;
}
public ListHotelAlarmResponseBodyResultScheduleInfoOnce getOnce() {
return this.once;
}
public ListHotelAlarmResponseBodyResultScheduleInfo setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListHotelAlarmResponseBodyResultScheduleInfo setWeekly(ListHotelAlarmResponseBodyResultScheduleInfoWeekly weekly) {
this.weekly = weekly;
return this;
}
public ListHotelAlarmResponseBodyResultScheduleInfoWeekly getWeekly() {
return this.weekly;
}
}
public static class ListHotelAlarmResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>5039</p>
*/
@NameInMap("AlarmId")
public Long alarmId;
/**
* <strong>example:</strong>
* <p>PvkB****VVTA==</p>
*/
@NameInMap("DeviceOpenId")
public String deviceOpenId;
@NameInMap("ScheduleInfo")
public ListHotelAlarmResponseBodyResultScheduleInfo scheduleInfo;
/**
* <strong>example:</strong>
* <p>mgw/k***HQd</p>
*/
@NameInMap("UserOpenId")
public String userOpenId;
public static ListHotelAlarmResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmResponseBodyResult self = new ListHotelAlarmResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelAlarmResponseBodyResult setAlarmId(Long alarmId) {
this.alarmId = alarmId;
return this;
}
public Long getAlarmId() {
return this.alarmId;
}
public ListHotelAlarmResponseBodyResult setDeviceOpenId(String deviceOpenId) {
this.deviceOpenId = deviceOpenId;
return this;
}
public String getDeviceOpenId() {
return this.deviceOpenId;
}
public ListHotelAlarmResponseBodyResult setScheduleInfo(ListHotelAlarmResponseBodyResultScheduleInfo scheduleInfo) {
this.scheduleInfo = scheduleInfo;
return this;
}
public ListHotelAlarmResponseBodyResultScheduleInfo getScheduleInfo() {
return this.scheduleInfo;
}
public ListHotelAlarmResponseBodyResult setUserOpenId(String userOpenId) {
this.userOpenId = userOpenId;
return this;
}
public String getUserOpenId() {
return this.userOpenId;
}
}
}
|
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/ListHotelAlarmShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelAlarmShrinkRequest extends TeaModel {
/**
* <strong>example:</strong>
* <p>a7a3***013</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("Rooms")
public String roomsShrink;
public static ListHotelAlarmShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelAlarmShrinkRequest self = new ListHotelAlarmShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelAlarmShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelAlarmShrinkRequest setRoomsShrink(String roomsShrink) {
this.roomsShrink = roomsShrink;
return this;
}
public String getRoomsShrink() {
return this.roomsShrink;
}
}
|
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/ListHotelControlDeviceHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelControlDeviceHeaders 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 ListHotelControlDeviceHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelControlDeviceHeaders self = new ListHotelControlDeviceHeaders();
return TeaModel.build(map, self);
}
public ListHotelControlDeviceHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelControlDeviceHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelControlDeviceHeaders 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/ListHotelControlDeviceRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelControlDeviceRequest extends TeaModel {
@NameInMap("UserInfo")
public ListHotelControlDeviceRequestUserInfo userInfo;
public static ListHotelControlDeviceRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelControlDeviceRequest self = new ListHotelControlDeviceRequest();
return TeaModel.build(map, self);
}
public ListHotelControlDeviceRequest setUserInfo(ListHotelControlDeviceRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListHotelControlDeviceRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListHotelControlDeviceRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListHotelControlDeviceRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListHotelControlDeviceRequestUserInfo self = new ListHotelControlDeviceRequestUserInfo();
return TeaModel.build(map, self);
}
public ListHotelControlDeviceRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListHotelControlDeviceRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListHotelControlDeviceRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListHotelControlDeviceRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListHotelControlDeviceRequestUserInfo 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/ListHotelControlDeviceResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelControlDeviceResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelControlDeviceResponseBody body;
public static ListHotelControlDeviceResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelControlDeviceResponse self = new ListHotelControlDeviceResponse();
return TeaModel.build(map, self);
}
public ListHotelControlDeviceResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelControlDeviceResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelControlDeviceResponse setBody(ListHotelControlDeviceResponseBody body) {
this.body = body;
return this;
}
public ListHotelControlDeviceResponseBody 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/ListHotelControlDeviceResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelControlDeviceResponseBody extends TeaModel {
@NameInMap("Code")
public Integer code;
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<java.util.Map<String, String>> result;
public static ListHotelControlDeviceResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelControlDeviceResponseBody self = new ListHotelControlDeviceResponseBody();
return TeaModel.build(map, self);
}
public ListHotelControlDeviceResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelControlDeviceResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelControlDeviceResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelControlDeviceResponseBody 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/ListHotelControlDeviceShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelControlDeviceShrinkRequest extends TeaModel {
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListHotelControlDeviceShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelControlDeviceShrinkRequest self = new ListHotelControlDeviceShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelControlDeviceShrinkRequest 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/ListHotelInfoHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelInfoHeaders 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 ListHotelInfoHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelInfoHeaders self = new ListHotelInfoHeaders();
return TeaModel.build(map, self);
}
public ListHotelInfoHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelInfoHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelInfoHeaders 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/ListHotelInfoResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelInfoResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelInfoResponseBody body;
public static ListHotelInfoResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelInfoResponse self = new ListHotelInfoResponse();
return TeaModel.build(map, self);
}
public ListHotelInfoResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelInfoResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelInfoResponse setBody(ListHotelInfoResponseBody body) {
this.body = body;
return this;
}
public ListHotelInfoResponseBody 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/ListHotelInfoResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelInfoResponseBody extends TeaModel {
@NameInMap("Extentions")
public java.util.Map<String, ?> extentions;
@NameInMap("Message")
public String message;
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListHotelInfoResponseBodyResult> result;
/**
* <strong>example:</strong>
* <p>200</p>
*/
@NameInMap("StatusCode")
public Integer statusCode;
public static ListHotelInfoResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelInfoResponseBody self = new ListHotelInfoResponseBody();
return TeaModel.build(map, self);
}
public ListHotelInfoResponseBody setExtentions(java.util.Map<String, ?> extentions) {
this.extentions = extentions;
return this;
}
public java.util.Map<String, ?> getExtentions() {
return this.extentions;
}
public ListHotelInfoResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelInfoResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelInfoResponseBody setResult(java.util.List<ListHotelInfoResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListHotelInfoResponseBodyResult> getResult() {
return this.result;
}
public ListHotelInfoResponseBody setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public static class ListHotelInfoResponseBodyResultAuthAccount extends TeaModel {
/**
* <strong>example:</strong>
* <p>leetest</p>
*/
@NameInMap("UserName")
public String userName;
public static ListHotelInfoResponseBodyResultAuthAccount build(java.util.Map<String, ?> map) throws Exception {
ListHotelInfoResponseBodyResultAuthAccount self = new ListHotelInfoResponseBodyResultAuthAccount();
return TeaModel.build(map, self);
}
public ListHotelInfoResponseBodyResultAuthAccount setUserName(String userName) {
this.userName = userName;
return this;
}
public String getUserName() {
return this.userName;
}
}
public static class ListHotelInfoResponseBodyResult extends TeaModel {
@NameInMap("AuthAccount")
public java.util.List<ListHotelInfoResponseBodyResultAuthAccount> authAccount;
@NameInMap("HotelAddress")
public String hotelAddress;
/**
* <strong>example:</strong>
* <p>cf2446fc9d144c85aaee4f9ae20a96e7</p>
*/
@NameInMap("HotelId")
public String hotelId;
@NameInMap("HotelName")
public String hotelName;
public static ListHotelInfoResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelInfoResponseBodyResult self = new ListHotelInfoResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelInfoResponseBodyResult setAuthAccount(java.util.List<ListHotelInfoResponseBodyResultAuthAccount> authAccount) {
this.authAccount = authAccount;
return this;
}
public java.util.List<ListHotelInfoResponseBodyResultAuthAccount> getAuthAccount() {
return this.authAccount;
}
public ListHotelInfoResponseBodyResult setHotelAddress(String hotelAddress) {
this.hotelAddress = hotelAddress;
return this;
}
public String getHotelAddress() {
return this.hotelAddress;
}
public ListHotelInfoResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelInfoResponseBodyResult setHotelName(String hotelName) {
this.hotelName = hotelName;
return this;
}
public String getHotelName() {
return this.hotelName;
}
}
}
|
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/ListHotelMessageTemplateHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelMessageTemplateHeaders 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 ListHotelMessageTemplateHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelMessageTemplateHeaders self = new ListHotelMessageTemplateHeaders();
return TeaModel.build(map, self);
}
public ListHotelMessageTemplateHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelMessageTemplateHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelMessageTemplateHeaders 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/ListHotelMessageTemplateResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelMessageTemplateResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelMessageTemplateResponseBody body;
public static ListHotelMessageTemplateResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelMessageTemplateResponse self = new ListHotelMessageTemplateResponse();
return TeaModel.build(map, self);
}
public ListHotelMessageTemplateResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelMessageTemplateResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelMessageTemplateResponse setBody(ListHotelMessageTemplateResponseBody body) {
this.body = body;
return this;
}
public ListHotelMessageTemplateResponseBody 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/ListHotelMessageTemplateResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelMessageTemplateResponseBody 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 java.util.List<ListHotelMessageTemplateResponseBodyResult> result;
public static ListHotelMessageTemplateResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelMessageTemplateResponseBody self = new ListHotelMessageTemplateResponseBody();
return TeaModel.build(map, self);
}
public ListHotelMessageTemplateResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelMessageTemplateResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelMessageTemplateResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelMessageTemplateResponseBody setResult(java.util.List<ListHotelMessageTemplateResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListHotelMessageTemplateResponseBodyResult> getResult() {
return this.result;
}
public static class ListHotelMessageTemplateResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>不通过</p>
*/
@NameInMap("AuditMark")
public String auditMark;
/**
* <strong>example:</strong>
* <p>COMMIT</p>
*/
@NameInMap("AuditStatus")
public String auditStatus;
/**
* <strong>example:</strong>
* <p>这是${hotel}的一个测试模板</p>
*/
@NameInMap("TemplateDetail")
public String templateDetail;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("TemplateId")
public Long templateId;
/**
* <strong>example:</strong>
* <p>测试模板</p>
*/
@NameInMap("TemplateName")
public String templateName;
public static ListHotelMessageTemplateResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelMessageTemplateResponseBodyResult self = new ListHotelMessageTemplateResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelMessageTemplateResponseBodyResult setAuditMark(String auditMark) {
this.auditMark = auditMark;
return this;
}
public String getAuditMark() {
return this.auditMark;
}
public ListHotelMessageTemplateResponseBodyResult setAuditStatus(String auditStatus) {
this.auditStatus = auditStatus;
return this;
}
public String getAuditStatus() {
return this.auditStatus;
}
public ListHotelMessageTemplateResponseBodyResult setTemplateDetail(String templateDetail) {
this.templateDetail = templateDetail;
return this;
}
public String getTemplateDetail() {
return this.templateDetail;
}
public ListHotelMessageTemplateResponseBodyResult setTemplateId(Long templateId) {
this.templateId = templateId;
return this;
}
public Long getTemplateId() {
return this.templateId;
}
public ListHotelMessageTemplateResponseBodyResult setTemplateName(String templateName) {
this.templateName = templateName;
return this;
}
public String getTemplateName() {
return this.templateName;
}
}
}
|
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/ListHotelOrderHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelOrderHeaders 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 ListHotelOrderHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderHeaders self = new ListHotelOrderHeaders();
return TeaModel.build(map, self);
}
public ListHotelOrderHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelOrderHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelOrderHeaders 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/ListHotelOrderRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelOrderRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public ListHotelOrderRequestPayload payload;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListHotelOrderRequestUserInfo userInfo;
public static ListHotelOrderRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderRequest self = new ListHotelOrderRequest();
return TeaModel.build(map, self);
}
public ListHotelOrderRequest setPayload(ListHotelOrderRequestPayload payload) {
this.payload = payload;
return this;
}
public ListHotelOrderRequestPayload getPayload() {
return this.payload;
}
public ListHotelOrderRequest setUserInfo(ListHotelOrderRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListHotelOrderRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListHotelOrderRequestPayloadPage extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("PageNumber")
public Long pageNumber;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>10</p>
*/
@NameInMap("PageSize")
public Long pageSize;
public static ListHotelOrderRequestPayloadPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderRequestPayloadPage self = new ListHotelOrderRequestPayloadPage();
return TeaModel.build(map, self);
}
public ListHotelOrderRequestPayloadPage setPageNumber(Long pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Long getPageNumber() {
return this.pageNumber;
}
public ListHotelOrderRequestPayloadPage setPageSize(Long pageSize) {
this.pageSize = pageSize;
return this;
}
public Long getPageSize() {
return this.pageSize;
}
}
public static class ListHotelOrderRequestPayload extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Page")
public ListHotelOrderRequestPayloadPage page;
public static ListHotelOrderRequestPayload build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderRequestPayload self = new ListHotelOrderRequestPayload();
return TeaModel.build(map, self);
}
public ListHotelOrderRequestPayload setPage(ListHotelOrderRequestPayloadPage page) {
this.page = page;
return this;
}
public ListHotelOrderRequestPayloadPage getPage() {
return this.page;
}
}
public static class ListHotelOrderRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1248494721591392955</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>mFU6VtVU+pgA8lx6rYMo7SPl11t+8b+8ALrn10MIPEdpK/HI9wELAEppYhPI1cYRDa4og8AMjAEBZKbLUwFjFA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListHotelOrderRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderRequestUserInfo self = new ListHotelOrderRequestUserInfo();
return TeaModel.build(map, self);
}
public ListHotelOrderRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListHotelOrderRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListHotelOrderRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListHotelOrderRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListHotelOrderRequestUserInfo 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/ListHotelOrderResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelOrderResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelOrderResponseBody body;
public static ListHotelOrderResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderResponse self = new ListHotelOrderResponse();
return TeaModel.build(map, self);
}
public ListHotelOrderResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelOrderResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelOrderResponse setBody(ListHotelOrderResponseBody body) {
this.body = body;
return this;
}
public ListHotelOrderResponseBody 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/ListHotelOrderResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelOrderResponseBody 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("Page")
public ListHotelOrderResponseBodyPage page;
/**
* <strong>example:</strong>
* <p>07F61FDA-606F-10A0-8ED0-C6CE62710A48</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public java.util.List<ListHotelOrderResponseBodyResult> result;
public static ListHotelOrderResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderResponseBody self = new ListHotelOrderResponseBody();
return TeaModel.build(map, self);
}
public ListHotelOrderResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelOrderResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelOrderResponseBody setPage(ListHotelOrderResponseBodyPage page) {
this.page = page;
return this;
}
public ListHotelOrderResponseBodyPage getPage() {
return this.page;
}
public ListHotelOrderResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelOrderResponseBody setResult(java.util.List<ListHotelOrderResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListHotelOrderResponseBodyResult> getResult() {
return this.result;
}
public static class ListHotelOrderResponseBodyPage 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>21</p>
*/
@NameInMap("Total")
public Integer total;
/**
* <strong>example:</strong>
* <p>7</p>
*/
@NameInMap("TotalPage")
public Integer totalPage;
public static ListHotelOrderResponseBodyPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderResponseBodyPage self = new ListHotelOrderResponseBodyPage();
return TeaModel.build(map, self);
}
public ListHotelOrderResponseBodyPage setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListHotelOrderResponseBodyPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelOrderResponseBodyPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListHotelOrderResponseBodyPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public ListHotelOrderResponseBodyPage setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Integer getTotalPage() {
return this.totalPage;
}
}
public static class ListHotelOrderResponseBodyResult extends TeaModel {
@NameInMap("Amt")
public Long amt;
/**
* <strong>example:</strong>
* <p>21.5</p>
*/
@NameInMap("ApplyAmt")
public Long applyAmt;
@NameInMap("DeliveryMethod")
public String deliveryMethod;
@NameInMap("DeliveryRoomName")
public String deliveryRoomName;
@NameInMap("DeliveryTime")
public Long deliveryTime;
/**
* <strong>example:</strong>
* <p>1659952892000</p>
*/
@NameInMap("GmtCreate")
public Long gmtCreate;
@NameInMap("Icon")
public String icon;
@NameInMap("ItemId")
public Long itemId;
@NameInMap("ItemType")
public String itemType;
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>20220808180132000114508555527711</p>
*/
@NameInMap("OrderNo")
public String orderNo;
@NameInMap("OrderStatus")
public String orderStatus;
@NameInMap("PaymentMethod")
public String paymentMethod;
/**
* <strong>example:</strong>
* <p>12</p>
*/
@NameInMap("Quantity")
public Long quantity;
/**
* <strong>example:</strong>
* <p>2001</p>
*/
@NameInMap("RoomNo")
public String roomNo;
@NameInMap("StartTime")
public Long startTime;
/**
* <strong>example:</strong>
* <p>INIT</p>
*/
@NameInMap("Status")
public String status;
@NameInMap("SumAmt")
public Long sumAmt;
/**
* <strong>example:</strong>
* <p>REPAIR</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p><a href="https://ailabsaicloudservice.alicdn.com/hotel/icon/changjingfenlei/shebeiweixiu.png">https://ailabsaicloudservice.alicdn.com/hotel/icon/changjingfenlei/shebeiweixiu.png</a></p>
*/
@NameInMap("TypeIconUrl")
public String typeIconUrl;
/**
* <strong>example:</strong>
* <p>设备维修</p>
*/
@NameInMap("TypeName")
public String typeName;
public static ListHotelOrderResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderResponseBodyResult self = new ListHotelOrderResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelOrderResponseBodyResult setAmt(Long amt) {
this.amt = amt;
return this;
}
public Long getAmt() {
return this.amt;
}
public ListHotelOrderResponseBodyResult setApplyAmt(Long applyAmt) {
this.applyAmt = applyAmt;
return this;
}
public Long getApplyAmt() {
return this.applyAmt;
}
public ListHotelOrderResponseBodyResult setDeliveryMethod(String deliveryMethod) {
this.deliveryMethod = deliveryMethod;
return this;
}
public String getDeliveryMethod() {
return this.deliveryMethod;
}
public ListHotelOrderResponseBodyResult setDeliveryRoomName(String deliveryRoomName) {
this.deliveryRoomName = deliveryRoomName;
return this;
}
public String getDeliveryRoomName() {
return this.deliveryRoomName;
}
public ListHotelOrderResponseBodyResult setDeliveryTime(Long deliveryTime) {
this.deliveryTime = deliveryTime;
return this;
}
public Long getDeliveryTime() {
return this.deliveryTime;
}
public ListHotelOrderResponseBodyResult setGmtCreate(Long gmtCreate) {
this.gmtCreate = gmtCreate;
return this;
}
public Long getGmtCreate() {
return this.gmtCreate;
}
public ListHotelOrderResponseBodyResult setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ListHotelOrderResponseBodyResult setItemId(Long itemId) {
this.itemId = itemId;
return this;
}
public Long getItemId() {
return this.itemId;
}
public ListHotelOrderResponseBodyResult setItemType(String itemType) {
this.itemType = itemType;
return this;
}
public String getItemType() {
return this.itemType;
}
public ListHotelOrderResponseBodyResult setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListHotelOrderResponseBodyResult setOrderNo(String orderNo) {
this.orderNo = orderNo;
return this;
}
public String getOrderNo() {
return this.orderNo;
}
public ListHotelOrderResponseBodyResult setOrderStatus(String orderStatus) {
this.orderStatus = orderStatus;
return this;
}
public String getOrderStatus() {
return this.orderStatus;
}
public ListHotelOrderResponseBodyResult setPaymentMethod(String paymentMethod) {
this.paymentMethod = paymentMethod;
return this;
}
public String getPaymentMethod() {
return this.paymentMethod;
}
public ListHotelOrderResponseBodyResult setQuantity(Long quantity) {
this.quantity = quantity;
return this;
}
public Long getQuantity() {
return this.quantity;
}
public ListHotelOrderResponseBodyResult setRoomNo(String roomNo) {
this.roomNo = roomNo;
return this;
}
public String getRoomNo() {
return this.roomNo;
}
public ListHotelOrderResponseBodyResult setStartTime(Long startTime) {
this.startTime = startTime;
return this;
}
public Long getStartTime() {
return this.startTime;
}
public ListHotelOrderResponseBodyResult setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListHotelOrderResponseBodyResult setSumAmt(Long sumAmt) {
this.sumAmt = sumAmt;
return this;
}
public Long getSumAmt() {
return this.sumAmt;
}
public ListHotelOrderResponseBodyResult setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListHotelOrderResponseBodyResult setTypeIconUrl(String typeIconUrl) {
this.typeIconUrl = typeIconUrl;
return this;
}
public String getTypeIconUrl() {
return this.typeIconUrl;
}
public ListHotelOrderResponseBodyResult setTypeName(String typeName) {
this.typeName = typeName;
return this;
}
public String getTypeName() {
return this.typeName;
}
}
}
|
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/ListHotelOrderShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelOrderShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public String payloadShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListHotelOrderShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelOrderShrinkRequest self = new ListHotelOrderShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelOrderShrinkRequest setPayloadShrink(String payloadShrink) {
this.payloadShrink = payloadShrink;
return this;
}
public String getPayloadShrink() {
return this.payloadShrink;
}
public ListHotelOrderShrinkRequest 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/ListHotelRoomsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelRoomsHeaders 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 ListHotelRoomsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsHeaders self = new ListHotelRoomsHeaders();
return TeaModel.build(map, self);
}
public ListHotelRoomsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelRoomsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelRoomsHeaders 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/ListHotelRoomsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelRoomsRequest extends TeaModel {
/**
* <strong>if can be null:</strong>
* <p>true</p>
*/
@NameInMap("HotelAdminRoom")
public ListHotelRoomsRequestHotelAdminRoom hotelAdminRoom;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>e6dd44fd16084db8a60d69fd625d9f0f</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static ListHotelRoomsRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsRequest self = new ListHotelRoomsRequest();
return TeaModel.build(map, self);
}
public ListHotelRoomsRequest setHotelAdminRoom(ListHotelRoomsRequestHotelAdminRoom hotelAdminRoom) {
this.hotelAdminRoom = hotelAdminRoom;
return this;
}
public ListHotelRoomsRequestHotelAdminRoom getHotelAdminRoom() {
return this.hotelAdminRoom;
}
public ListHotelRoomsRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public static class ListHotelRoomsRequestHotelAdminRoom extends TeaModel {
@NameInMap("RoomNo")
public String roomNo;
public static ListHotelRoomsRequestHotelAdminRoom build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsRequestHotelAdminRoom self = new ListHotelRoomsRequestHotelAdminRoom();
return TeaModel.build(map, self);
}
public ListHotelRoomsRequestHotelAdminRoom 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/ListHotelRoomsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelRoomsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelRoomsResponseBody body;
public static ListHotelRoomsResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsResponse self = new ListHotelRoomsResponse();
return TeaModel.build(map, self);
}
public ListHotelRoomsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelRoomsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelRoomsResponse setBody(ListHotelRoomsResponseBody body) {
this.body = body;
return this;
}
public ListHotelRoomsResponseBody 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/ListHotelRoomsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelRoomsResponseBody 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 java.util.List<ListHotelRoomsResponseBodyResult> result;
public static ListHotelRoomsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsResponseBody self = new ListHotelRoomsResponseBody();
return TeaModel.build(map, self);
}
public ListHotelRoomsResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelRoomsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelRoomsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelRoomsResponseBody setResult(java.util.List<ListHotelRoomsResponseBodyResult> result) {
this.result = result;
return this;
}
public java.util.List<ListHotelRoomsResponseBodyResult> getResult() {
return this.result;
}
public static class ListHotelRoomsResponseBodyResult extends TeaModel {
/**
* <strong>example:</strong>
* <p>e6dd44fd16084db8a60d69fd625d9f0f</p>
*/
@NameInMap("HotelId")
public String hotelId;
/**
* <strong>example:</strong>
* <p>102</p>
*/
@NameInMap("RoomNo")
public String roomNo;
public static ListHotelRoomsResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsResponseBodyResult self = new ListHotelRoomsResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelRoomsResponseBodyResult setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelRoomsResponseBodyResult 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/ListHotelRoomsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelRoomsShrinkRequest extends TeaModel {
/**
* <strong>if can be null:</strong>
* <p>true</p>
*/
@NameInMap("HotelAdminRoom")
public String hotelAdminRoomShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>e6dd44fd16084db8a60d69fd625d9f0f</p>
*/
@NameInMap("HotelId")
public String hotelId;
public static ListHotelRoomsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelRoomsShrinkRequest self = new ListHotelRoomsShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelRoomsShrinkRequest setHotelAdminRoomShrink(String hotelAdminRoomShrink) {
this.hotelAdminRoomShrink = hotelAdminRoomShrink;
return this;
}
public String getHotelAdminRoomShrink() {
return this.hotelAdminRoomShrink;
}
public ListHotelRoomsShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
}
|
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/ListHotelSceneBookItemsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneBookItemsHeaders 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 ListHotelSceneBookItemsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsHeaders self = new ListHotelSceneBookItemsHeaders();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelSceneBookItemsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelSceneBookItemsHeaders 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/ListHotelSceneBookItemsRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneBookItemsRequest 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>
*/
@NameInMap("Page")
public ListHotelSceneBookItemsRequestPage page;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>FOOD</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelSceneBookItemsRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsRequest self = new ListHotelSceneBookItemsRequest();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelSceneBookItemsRequest setPage(ListHotelSceneBookItemsRequestPage page) {
this.page = page;
return this;
}
public ListHotelSceneBookItemsRequestPage getPage() {
return this.page;
}
public ListHotelSceneBookItemsRequest setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public static class ListHotelSceneBookItemsRequestPage 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 ListHotelSceneBookItemsRequestPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsRequestPage self = new ListHotelSceneBookItemsRequestPage();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsRequestPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelSceneBookItemsRequestPage 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/ListHotelSceneBookItemsResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneBookItemsResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelSceneBookItemsResponseBody body;
public static ListHotelSceneBookItemsResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsResponse self = new ListHotelSceneBookItemsResponse();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelSceneBookItemsResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelSceneBookItemsResponse setBody(ListHotelSceneBookItemsResponseBody body) {
this.body = body;
return this;
}
public ListHotelSceneBookItemsResponseBody 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/ListHotelSceneBookItemsResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneBookItemsResponseBody 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 ListHotelSceneBookItemsResponseBodyResult result;
public static ListHotelSceneBookItemsResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsResponseBody self = new ListHotelSceneBookItemsResponseBody();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelSceneBookItemsResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelSceneBookItemsResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelSceneBookItemsResponseBody setResult(ListHotelSceneBookItemsResponseBodyResult result) {
this.result = result;
return this;
}
public ListHotelSceneBookItemsResponseBodyResult getResult() {
return this.result;
}
public static class ListHotelSceneBookItemsResponseBodyResultPage extends TeaModel {
/**
* <strong>example:</strong>
* <p>True</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 ListHotelSceneBookItemsResponseBodyResultPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsResponseBodyResultPage self = new ListHotelSceneBookItemsResponseBodyResultPage();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsResponseBodyResultPage setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListHotelSceneBookItemsResponseBodyResultPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelSceneBookItemsResponseBodyResultPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListHotelSceneBookItemsResponseBodyResultPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public ListHotelSceneBookItemsResponseBodyResultPage setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Integer getTotalPage() {
return this.totalPage;
}
}
public static class ListHotelSceneBookItemsResponseBodyResultSceneItemList extends TeaModel {
/**
* <strong>example:</strong>
* <p><a href="https://ailabs.alibabausercontent.com/platform/28d7a91e3c05db3855725fc39e0387e7/welcome_audios/aa918294b6ca3aa115c51135bf9b80cb/l9f996sq.png">https://ailabs.alibabausercontent.com/platform/28d7a91e3c05db3855725fc39e0387e7/welcome_audios/aa918294b6ca3aa115c51135bf9b80cb/l9f996sq.png</a></p>
*/
@NameInMap("Icon")
public String icon;
/**
* <strong>example:</strong>
* <p>11824</p>
*/
@NameInMap("Id")
public Long id;
/**
* <strong>example:</strong>
* <p>青椒肉丝</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>1850</p>
*/
@NameInMap("Price")
public Long price;
/**
* <strong>example:</strong>
* <p>已添加</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>FOOD</p>
*/
@NameInMap("Type")
public String type;
/**
* <strong>example:</strong>
* <p>1666161803</p>
*/
@NameInMap("UpdateTime")
public Long updateTime;
public static ListHotelSceneBookItemsResponseBodyResultSceneItemList build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsResponseBodyResultSceneItemList self = new ListHotelSceneBookItemsResponseBodyResultSceneItemList();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setId(Long id) {
this.id = id;
return this;
}
public Long getId() {
return this.id;
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setPrice(Long price) {
this.price = price;
return this;
}
public Long getPrice() {
return this.price;
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
public ListHotelSceneBookItemsResponseBodyResultSceneItemList setUpdateTime(Long updateTime) {
this.updateTime = updateTime;
return this;
}
public Long getUpdateTime() {
return this.updateTime;
}
}
public static class ListHotelSceneBookItemsResponseBodyResult extends TeaModel {
@NameInMap("Page")
public ListHotelSceneBookItemsResponseBodyResultPage page;
@NameInMap("SceneItemList")
public java.util.List<ListHotelSceneBookItemsResponseBodyResultSceneItemList> sceneItemList;
public static ListHotelSceneBookItemsResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsResponseBodyResult self = new ListHotelSceneBookItemsResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsResponseBodyResult setPage(ListHotelSceneBookItemsResponseBodyResultPage page) {
this.page = page;
return this;
}
public ListHotelSceneBookItemsResponseBodyResultPage getPage() {
return this.page;
}
public ListHotelSceneBookItemsResponseBodyResult setSceneItemList(java.util.List<ListHotelSceneBookItemsResponseBodyResultSceneItemList> sceneItemList) {
this.sceneItemList = sceneItemList;
return this;
}
public java.util.List<ListHotelSceneBookItemsResponseBodyResultSceneItemList> 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/ListHotelSceneBookItemsShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneBookItemsShrinkRequest 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>
*/
@NameInMap("Page")
public String pageShrink;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>FOOD</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelSceneBookItemsShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneBookItemsShrinkRequest self = new ListHotelSceneBookItemsShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelSceneBookItemsShrinkRequest setHotelId(String hotelId) {
this.hotelId = hotelId;
return this;
}
public String getHotelId() {
return this.hotelId;
}
public ListHotelSceneBookItemsShrinkRequest setPageShrink(String pageShrink) {
this.pageShrink = pageShrink;
return this;
}
public String getPageShrink() {
return this.pageShrink;
}
public ListHotelSceneBookItemsShrinkRequest 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/ListHotelSceneItemHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemHeaders 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 ListHotelSceneItemHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemHeaders self = new ListHotelSceneItemHeaders();
return TeaModel.build(map, self);
}
public ListHotelSceneItemHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelSceneItemHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelSceneItemHeaders 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/ListHotelSceneItemRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public ListHotelSceneItemRequestPayload payload;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public ListHotelSceneItemRequestUserInfo userInfo;
public static ListHotelSceneItemRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemRequest self = new ListHotelSceneItemRequest();
return TeaModel.build(map, self);
}
public ListHotelSceneItemRequest setPayload(ListHotelSceneItemRequestPayload payload) {
this.payload = payload;
return this;
}
public ListHotelSceneItemRequestPayload getPayload() {
return this.payload;
}
public ListHotelSceneItemRequest setUserInfo(ListHotelSceneItemRequestUserInfo userInfo) {
this.userInfo = userInfo;
return this;
}
public ListHotelSceneItemRequestUserInfo getUserInfo() {
return this.userInfo;
}
public static class ListHotelSceneItemRequestPayload extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>GOODS</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelSceneItemRequestPayload build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemRequestPayload self = new ListHotelSceneItemRequestPayload();
return TeaModel.build(map, self);
}
public ListHotelSceneItemRequestPayload setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListHotelSceneItemRequestUserInfo extends TeaModel {
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>1248494721591392955</p>
*/
@NameInMap("EncodeKey")
public String encodeKey;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>PROJECT_ID</p>
*/
@NameInMap("EncodeType")
public String encodeType;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>mFU6VtVU+pgA8lx6rYMo7SPl11t+8b+8ALrn10MIPEdpK/HI9wELAEppYhPI1cYRDa4og8AMjAEBZKbLUwFjFA==</p>
*/
@NameInMap("Id")
public String id;
/**
* <p>This parameter is required.</p>
*
* <strong>example:</strong>
* <p>OPEN_ID</p>
*/
@NameInMap("IdType")
public String idType;
@NameInMap("OrganizationId")
public String organizationId;
public static ListHotelSceneItemRequestUserInfo build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemRequestUserInfo self = new ListHotelSceneItemRequestUserInfo();
return TeaModel.build(map, self);
}
public ListHotelSceneItemRequestUserInfo setEncodeKey(String encodeKey) {
this.encodeKey = encodeKey;
return this;
}
public String getEncodeKey() {
return this.encodeKey;
}
public ListHotelSceneItemRequestUserInfo setEncodeType(String encodeType) {
this.encodeType = encodeType;
return this;
}
public String getEncodeType() {
return this.encodeType;
}
public ListHotelSceneItemRequestUserInfo setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListHotelSceneItemRequestUserInfo setIdType(String idType) {
this.idType = idType;
return this;
}
public String getIdType() {
return this.idType;
}
public ListHotelSceneItemRequestUserInfo 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/ListHotelSceneItemResponse.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemResponse extends TeaModel {
@NameInMap("headers")
public java.util.Map<String, String> headers;
@NameInMap("statusCode")
public Integer statusCode;
@NameInMap("body")
public ListHotelSceneItemResponseBody body;
public static ListHotelSceneItemResponse build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemResponse self = new ListHotelSceneItemResponse();
return TeaModel.build(map, self);
}
public ListHotelSceneItemResponse setHeaders(java.util.Map<String, String> headers) {
this.headers = headers;
return this;
}
public java.util.Map<String, String> getHeaders() {
return this.headers;
}
public ListHotelSceneItemResponse setStatusCode(Integer statusCode) {
this.statusCode = statusCode;
return this;
}
public Integer getStatusCode() {
return this.statusCode;
}
public ListHotelSceneItemResponse setBody(ListHotelSceneItemResponseBody body) {
this.body = body;
return this;
}
public ListHotelSceneItemResponseBody 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/ListHotelSceneItemResponseBody.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemResponseBody 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("Page")
public ListHotelSceneItemResponseBodyPage page;
/**
* <strong>example:</strong>
* <p>CEADB586-51CB-1B6B-95BD-AB85A7A08E97</p>
*/
@NameInMap("RequestId")
public String requestId;
@NameInMap("Result")
public ListHotelSceneItemResponseBodyResult result;
public static ListHotelSceneItemResponseBody build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemResponseBody self = new ListHotelSceneItemResponseBody();
return TeaModel.build(map, self);
}
public ListHotelSceneItemResponseBody setCode(Integer code) {
this.code = code;
return this;
}
public Integer getCode() {
return this.code;
}
public ListHotelSceneItemResponseBody setMessage(String message) {
this.message = message;
return this;
}
public String getMessage() {
return this.message;
}
public ListHotelSceneItemResponseBody setPage(ListHotelSceneItemResponseBodyPage page) {
this.page = page;
return this;
}
public ListHotelSceneItemResponseBodyPage getPage() {
return this.page;
}
public ListHotelSceneItemResponseBody setRequestId(String requestId) {
this.requestId = requestId;
return this;
}
public String getRequestId() {
return this.requestId;
}
public ListHotelSceneItemResponseBody setResult(ListHotelSceneItemResponseBodyResult result) {
this.result = result;
return this;
}
public ListHotelSceneItemResponseBodyResult getResult() {
return this.result;
}
public static class ListHotelSceneItemResponseBodyPage 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>12</p>
*/
@NameInMap("Total")
public Integer total;
/**
* <strong>example:</strong>
* <p>6</p>
*/
@NameInMap("TotalPage")
public Integer totalPage;
public static ListHotelSceneItemResponseBodyPage build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemResponseBodyPage self = new ListHotelSceneItemResponseBodyPage();
return TeaModel.build(map, self);
}
public ListHotelSceneItemResponseBodyPage setHasNext(Boolean hasNext) {
this.hasNext = hasNext;
return this;
}
public Boolean getHasNext() {
return this.hasNext;
}
public ListHotelSceneItemResponseBodyPage setPageNumber(Integer pageNumber) {
this.pageNumber = pageNumber;
return this;
}
public Integer getPageNumber() {
return this.pageNumber;
}
public ListHotelSceneItemResponseBodyPage setPageSize(Integer pageSize) {
this.pageSize = pageSize;
return this;
}
public Integer getPageSize() {
return this.pageSize;
}
public ListHotelSceneItemResponseBodyPage setTotal(Integer total) {
this.total = total;
return this;
}
public Integer getTotal() {
return this.total;
}
public ListHotelSceneItemResponseBodyPage setTotalPage(Integer totalPage) {
this.totalPage = totalPage;
return this;
}
public Integer getTotalPage() {
return this.totalPage;
}
}
public static class ListHotelSceneItemResponseBodyResultSecondCategoryListItemList extends TeaModel {
/**
* <strong>example:</strong>
* <p>客用品类</p>
*/
@NameInMap("Category")
public String category;
/**
* <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;
/**
* <strong>example:</strong>
* <p>152860</p>
*/
@NameInMap("Id")
public String id;
/**
* <strong>example:</strong>
* <p>棉签</p>
*/
@NameInMap("Name")
public String name;
/**
* <strong>example:</strong>
* <p>1</p>
*/
@NameInMap("Price")
public Long price;
@NameInMap("ResidueLimit")
public Long residueLimit;
/**
* <strong>example:</strong>
* <p>已添加</p>
*/
@NameInMap("Status")
public String status;
/**
* <strong>example:</strong>
* <p>GOODS</p>
*/
@NameInMap("Type")
public String type;
public static ListHotelSceneItemResponseBodyResultSecondCategoryListItemList build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemResponseBodyResultSecondCategoryListItemList self = new ListHotelSceneItemResponseBodyResultSecondCategoryListItemList();
return TeaModel.build(map, self);
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setCategory(String category) {
this.category = category;
return this;
}
public String getCategory() {
return this.category;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setIcon(String icon) {
this.icon = icon;
return this;
}
public String getIcon() {
return this.icon;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setId(String id) {
this.id = id;
return this;
}
public String getId() {
return this.id;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setName(String name) {
this.name = name;
return this;
}
public String getName() {
return this.name;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setPrice(Long price) {
this.price = price;
return this;
}
public Long getPrice() {
return this.price;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setResidueLimit(Long residueLimit) {
this.residueLimit = residueLimit;
return this;
}
public Long getResidueLimit() {
return this.residueLimit;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setStatus(String status) {
this.status = status;
return this;
}
public String getStatus() {
return this.status;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryListItemList setType(String type) {
this.type = type;
return this;
}
public String getType() {
return this.type;
}
}
public static class ListHotelSceneItemResponseBodyResultSecondCategoryList extends TeaModel {
@NameInMap("ItemList")
public java.util.List<ListHotelSceneItemResponseBodyResultSecondCategoryListItemList> itemList;
/**
* <strong>example:</strong>
* <p>客用品类</p>
*/
@NameInMap("SecondCategoryName")
public String secondCategoryName;
public static ListHotelSceneItemResponseBodyResultSecondCategoryList build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemResponseBodyResultSecondCategoryList self = new ListHotelSceneItemResponseBodyResultSecondCategoryList();
return TeaModel.build(map, self);
}
public ListHotelSceneItemResponseBodyResultSecondCategoryList setItemList(java.util.List<ListHotelSceneItemResponseBodyResultSecondCategoryListItemList> itemList) {
this.itemList = itemList;
return this;
}
public java.util.List<ListHotelSceneItemResponseBodyResultSecondCategoryListItemList> getItemList() {
return this.itemList;
}
public ListHotelSceneItemResponseBodyResultSecondCategoryList setSecondCategoryName(String secondCategoryName) {
this.secondCategoryName = secondCategoryName;
return this;
}
public String getSecondCategoryName() {
return this.secondCategoryName;
}
}
public static class ListHotelSceneItemResponseBodyResult extends TeaModel {
@NameInMap("SecondCategoryList")
public java.util.List<ListHotelSceneItemResponseBodyResultSecondCategoryList> secondCategoryList;
public static ListHotelSceneItemResponseBodyResult build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemResponseBodyResult self = new ListHotelSceneItemResponseBodyResult();
return TeaModel.build(map, self);
}
public ListHotelSceneItemResponseBodyResult setSecondCategoryList(java.util.List<ListHotelSceneItemResponseBodyResultSecondCategoryList> secondCategoryList) {
this.secondCategoryList = secondCategoryList;
return this;
}
public java.util.List<ListHotelSceneItemResponseBodyResultSecondCategoryList> getSecondCategoryList() {
return this.secondCategoryList;
}
}
}
|
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/ListHotelSceneItemShrinkRequest.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemShrinkRequest extends TeaModel {
/**
* <p>This parameter is required.</p>
*/
@NameInMap("Payload")
public String payloadShrink;
/**
* <p>This parameter is required.</p>
*/
@NameInMap("UserInfo")
public String userInfoShrink;
public static ListHotelSceneItemShrinkRequest build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemShrinkRequest self = new ListHotelSceneItemShrinkRequest();
return TeaModel.build(map, self);
}
public ListHotelSceneItemShrinkRequest setPayloadShrink(String payloadShrink) {
this.payloadShrink = payloadShrink;
return this;
}
public String getPayloadShrink() {
return this.payloadShrink;
}
public ListHotelSceneItemShrinkRequest 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/ListHotelSceneItemsHeaders.java
|
// This file is auto-generated, don't edit it. Thanks.
package com.aliyun.aligenieip_1_0.models;
import com.aliyun.tea.*;
public class ListHotelSceneItemsHeaders 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 ListHotelSceneItemsHeaders build(java.util.Map<String, ?> map) throws Exception {
ListHotelSceneItemsHeaders self = new ListHotelSceneItemsHeaders();
return TeaModel.build(map, self);
}
public ListHotelSceneItemsHeaders setCommonHeaders(java.util.Map<String, String> commonHeaders) {
this.commonHeaders = commonHeaders;
return this;
}
public java.util.Map<String, String> getCommonHeaders() {
return this.commonHeaders;
}
public ListHotelSceneItemsHeaders setXAcsAligenieAccessToken(String xAcsAligenieAccessToken) {
this.xAcsAligenieAccessToken = xAcsAligenieAccessToken;
return this;
}
public String getXAcsAligenieAccessToken() {
return this.xAcsAligenieAccessToken;
}
public ListHotelSceneItemsHeaders setAuthorization(String authorization) {
this.authorization = authorization;
return this;
}
public String getAuthorization() {
return this.authorization;
}
}
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.