@alicloud/aligenieip_1_0 1.0.21 → 1.0.22

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@alicloud/aligenieip_1_0",
3
- "version": "1.0.21",
3
+ "version": "1.0.22",
4
4
  "description": "",
5
5
  "main": "dist/client.js",
6
6
  "scripts": {
package/src/client.ts CHANGED
@@ -7171,12 +7171,14 @@ export class QueryHotelRoomDetailRequest extends $tea.Model {
7171
7171
  hotelId?: string;
7172
7172
  mac?: string;
7173
7173
  roomNo?: string;
7174
+ sn?: string;
7174
7175
  uuid?: string;
7175
7176
  static names(): { [key: string]: string } {
7176
7177
  return {
7177
7178
  hotelId: 'HotelId',
7178
7179
  mac: 'Mac',
7179
7180
  roomNo: 'RoomNo',
7181
+ sn: 'Sn',
7180
7182
  uuid: 'Uuid',
7181
7183
  };
7182
7184
  }
@@ -7186,6 +7188,7 @@ export class QueryHotelRoomDetailRequest extends $tea.Model {
7186
7188
  hotelId: 'string',
7187
7189
  mac: 'string',
7188
7190
  roomNo: 'string',
7191
+ sn: 'string',
7189
7192
  uuid: 'string',
7190
7193
  };
7191
7194
  }
@@ -16095,6 +16098,10 @@ export default class Client extends OpenApi {
16095
16098
  body["RoomNo"] = request.roomNo;
16096
16099
  }
16097
16100
 
16101
+ if (!Util.isUnset(request.sn)) {
16102
+ body["Sn"] = request.sn;
16103
+ }
16104
+
16098
16105
  if (!Util.isUnset(request.uuid)) {
16099
16106
  body["Uuid"] = request.uuid;
16100
16107
  }