tencentcloud-sdk-ccc 3.0.570 → 3.0.571

Sign up to get free protection for your applications and to get access to all the features.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20200210/models.rb +48 -2
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 26ed4e2b0d6e8f3f27cb94a7af0a3eccfe94c4cb
4
- data.tar.gz: 7ec618300811cb923ba388fdd38c4f0359388dd6
3
+ metadata.gz: c2df8758ec0d59a1a1b408299b0949db615fd80d
4
+ data.tar.gz: f99423dfeab832722b27e286ce3bc6c19f72f79b
5
5
  SHA512:
6
- metadata.gz: 0584040c8ec7ab512b1e9b2fd679a74a0681e309d10566c5cc7a9a4751a9197ad7531a936fafb3d5d6f74af5b8be237ceafb3a656f74f0ee44d7b13cded67c53
7
- data.tar.gz: 91e0319d9870d4ca909fd4ca24d17a9135d951808736f35554aee81d0eafcad31ce818b64d3229583e11f8304c45d70e86abf6c00742749937537e55558bbf09
6
+ metadata.gz: 2a4b5e558b419e2f57b915a90df2c561644fa1a2fd3d9271ffa32df0454687f48e70801812f6207d3d41787c0e8bc95526fc402e562d1b5fc434e8573a4e2f13
7
+ data.tar.gz: c0f7d3c5e36121f730d8bd67b7f164c127f7c136fa55aaf24e78efc1909fd0218658ce0ba01cb9c3262a4fd158cfec590b5f7f3c67008d04201bff256f5b22bd
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.570
1
+ 3.0.571
@@ -311,6 +311,37 @@ module TencentCloud
311
311
  end
312
312
  end
313
313
 
314
+ # 被叫属性
315
+ class CalleeAttribute < TencentCloud::Common::AbstractModel
316
+ # @param Callee: 被叫号码
317
+ # @type Callee: String
318
+ # @param UUI: 随路数据
319
+ # @type UUI: String
320
+ # @param Variables: 参数
321
+ # @type Variables: Array
322
+
323
+ attr_accessor :Callee, :UUI, :Variables
324
+
325
+ def initialize(callee=nil, uui=nil, variables=nil)
326
+ @Callee = callee
327
+ @UUI = uui
328
+ @Variables = variables
329
+ end
330
+
331
+ def deserialize(params)
332
+ @Callee = params['Callee']
333
+ @UUI = params['UUI']
334
+ unless params['Variables'].nil?
335
+ @Variables = []
336
+ params['Variables'].each do |i|
337
+ variable_tmp = Variable.new
338
+ variable_tmp.deserialize(i)
339
+ @Variables << variable_tmp
340
+ end
341
+ end
342
+ end
343
+ end
344
+
314
345
  # 运营商白名单号码申请单
315
346
  class CarrierPrivilegeNumberApplicant < TencentCloud::Common::AbstractModel
316
347
  # @param SdkAppId: 实例Id
@@ -378,10 +409,14 @@ module TencentCloud
378
409
  # @type Tries: Integer
379
410
  # @param Variables: 自定义变量(仅高级版支持)
380
411
  # @type Variables: Array
412
+ # @param UUI: UUI
413
+ # @type UUI: String
414
+ # @param CalleeAttributes: 被叫属性
415
+ # @type CalleeAttributes: Array
381
416
 
382
- attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables
417
+ attr_accessor :SdkAppId, :NotBefore, :Callees, :Callers, :IvrId, :Name, :Description, :NotAfter, :Tries, :Variables, :UUI, :CalleeAttributes
383
418
 
384
- def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil)
419
+ def initialize(sdkappid=nil, notbefore=nil, callees=nil, callers=nil, ivrid=nil, name=nil, description=nil, notafter=nil, tries=nil, variables=nil, uui=nil, calleeattributes=nil)
385
420
  @SdkAppId = sdkappid
386
421
  @NotBefore = notbefore
387
422
  @Callees = callees
@@ -392,6 +427,8 @@ module TencentCloud
392
427
  @NotAfter = notafter
393
428
  @Tries = tries
394
429
  @Variables = variables
430
+ @UUI = uui
431
+ @CalleeAttributes = calleeattributes
395
432
  end
396
433
 
397
434
  def deserialize(params)
@@ -412,6 +449,15 @@ module TencentCloud
412
449
  @Variables << variable_tmp
413
450
  end
414
451
  end
452
+ @UUI = params['UUI']
453
+ unless params['CalleeAttributes'].nil?
454
+ @CalleeAttributes = []
455
+ params['CalleeAttributes'].each do |i|
456
+ calleeattribute_tmp = CalleeAttribute.new
457
+ calleeattribute_tmp.deserialize(i)
458
+ @CalleeAttributes << calleeattribute_tmp
459
+ end
460
+ end
415
461
  end
416
462
  end
417
463
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ccc
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.570
4
+ version: 3.0.571
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2023-05-16 00:00:00.000000000 Z
11
+ date: 2023-05-17 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common