tencentcloud-sdk-nodejs-adp 4.1.285 → 4.1.286

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": "tencentcloud-sdk-nodejs-adp",
3
- "version": "4.1.285",
3
+ "version": "4.1.286",
4
4
  "description": "腾讯云 API NODEJS SDK",
5
5
  "main": "./tencentcloud/index.js",
6
6
  "module": "./es/index.js",
@@ -2292,27 +2292,27 @@ export interface ConversationResetInfo {
2292
2292
  */
2293
2293
  export interface ModelParameter {
2294
2294
  /**
2295
- * 默认值
2295
+ * <p>默认值</p>
2296
2296
  */
2297
2297
  DefaultValue?: string;
2298
2298
  /**
2299
- * 可选值列表
2299
+ * <p>可选值列表</p>
2300
2300
  */
2301
2301
  EnumValueList?: Array<string>;
2302
2302
  /**
2303
- * 最大值(仅数值类型有效)
2303
+ * <p>最大值(仅数值类型有效)</p>
2304
2304
  */
2305
2305
  MaxValue?: number;
2306
2306
  /**
2307
- * 最小值(仅数值类型有效)
2307
+ * <p>最小值(仅数值类型有效)</p>
2308
2308
  */
2309
2309
  MinValue?: number;
2310
2310
  /**
2311
- * 超参名称
2311
+ * <p>超参名称</p>
2312
2312
  */
2313
2313
  Name?: string;
2314
2314
  /**
2315
- * 超参类型。1-浮点数, 2-整数, 3-字符串
2315
+ * <p>超参类型。1-浮点数, 2-整数, 3-字符串</p>
2316
2316
  */
2317
2317
  Type?: number;
2318
2318
  }