tencentcloud-sdk-ess 3.0.576 → 3.0.578

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.
Files changed (4) hide show
  1. checksums.yaml +4 -4
  2. data/lib/VERSION +1 -1
  3. data/lib/v20201111/models.rb +14 -5
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 80ba44a0c84612613e885f85b06d88837f04aa2f
4
- data.tar.gz: 83d3484e9dad6fda8dfd914715679eb739e78765
3
+ metadata.gz: 83aac6379efcf72406920ebc1c341fb0d1ff7206
4
+ data.tar.gz: d8caf7afb2484ae301b7434378d14cfb7295d594
5
5
  SHA512:
6
- metadata.gz: 3c3f718d854d87be7f8bd620b5e7e17cba15653a1c602a98ec30bdff4af2f64a7596fd490ce696659b1d46ca75f429232fb2c11d5396be2749858fdd37669b83
7
- data.tar.gz: bf14c5bf2962343070b98f470a460bf9e238a6ae62a25a2cc6b5ece3b0eeab2b6249a1a7b29f1e0cb54b8751dc30a988548bfc757e8d16677b8d2dba474a4f72
6
+ metadata.gz: 10aa3cd52ed2e084317489c59d9a6541928452d4a5847eb93eb2a67384b7158b467c9c79cf01fc8c3b02f679c808360b882ffd8f9b9ab0ff43636a376ff819e7
7
+ data.tar.gz: 6edcb6fdad21a626eb30bf921bb17cea9af4de65cf405f0b2b2ed2957379331b6d90249fad768cb4f72469c0ac0ed434dad7798328258a74cd8cc376d22e48da
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 3.0.576
1
+ 3.0.578
@@ -803,7 +803,7 @@ module TencentCloud
803
803
  class CreateChannelSubOrganizationModifyQrCodeResponse < TencentCloud::Common::AbstractModel
804
804
  # @param QrCodeUrl: 二维码下载链接
805
805
  # @type QrCodeUrl: String
806
- # @param ExpiredTime: 二维码失效时间 unix 时间戳 精确到秒
806
+ # @param ExpiredTime: 二维码失效时间 UNIX 时间戳 精确到秒
807
807
  # @type ExpiredTime: Integer
808
808
  # @param RequestId: 唯一请求 ID,每次请求都会返回。定位问题时需要提供该次请求的 RequestId。
809
809
  # @type RequestId: String
@@ -2189,16 +2189,19 @@ module TencentCloud
2189
2189
  # @type NotifyType: String
2190
2190
  # @param NotifyAddress: 若上方填写为 SMS,则此处为手机号
2191
2191
  # @type NotifyAddress: String
2192
+ # @param ExpiredTime: 链接的过期时间,格式为Unix时间戳,不能早于当前时间,且最大为30天。如果不传,默认有效期为7天。
2193
+ # @type ExpiredTime: Integer
2192
2194
 
2193
- attr_accessor :Operator, :SceneKey, :AutoSignConfig, :UrlType, :NotifyType, :NotifyAddress
2195
+ attr_accessor :Operator, :SceneKey, :AutoSignConfig, :UrlType, :NotifyType, :NotifyAddress, :ExpiredTime
2194
2196
 
2195
- def initialize(operator=nil, scenekey=nil, autosignconfig=nil, urltype=nil, notifytype=nil, notifyaddress=nil)
2197
+ def initialize(operator=nil, scenekey=nil, autosignconfig=nil, urltype=nil, notifytype=nil, notifyaddress=nil, expiredtime=nil)
2196
2198
  @Operator = operator
2197
2199
  @SceneKey = scenekey
2198
2200
  @AutoSignConfig = autosignconfig
2199
2201
  @UrlType = urltype
2200
2202
  @NotifyType = notifytype
2201
2203
  @NotifyAddress = notifyaddress
2204
+ @ExpiredTime = expiredtime
2202
2205
  end
2203
2206
 
2204
2207
  def deserialize(params)
@@ -2214,6 +2217,7 @@ module TencentCloud
2214
2217
  @UrlType = params['UrlType']
2215
2218
  @NotifyType = params['NotifyType']
2216
2219
  @NotifyAddress = params['NotifyAddress']
2220
+ @ExpiredTime = params['ExpiredTime']
2217
2221
  end
2218
2222
  end
2219
2223
 
@@ -3731,10 +3735,13 @@ module TencentCloud
3731
3735
  # @param Creator: 合同发起人userId
3732
3736
  # 注意:此字段可能返回 null,表示取不到有效值。
3733
3737
  # @type Creator: String
3738
+ # @param Deadline: 合同过期时间,时间戳,单位秒
3739
+ # 注意:此字段可能返回 null,表示取不到有效值。
3740
+ # @type Deadline: Integer
3734
3741
 
3735
- attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator
3742
+ attr_accessor :FlowId, :FlowName, :FlowDescription, :FlowType, :FlowStatus, :CreatedOn, :FlowMessage, :Creator, :Deadline
3736
3743
 
3737
- def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil)
3744
+ def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, flowmessage=nil, creator=nil, deadline=nil)
3738
3745
  @FlowId = flowid
3739
3746
  @FlowName = flowname
3740
3747
  @FlowDescription = flowdescription
@@ -3743,6 +3750,7 @@ module TencentCloud
3743
3750
  @CreatedOn = createdon
3744
3751
  @FlowMessage = flowmessage
3745
3752
  @Creator = creator
3753
+ @Deadline = deadline
3746
3754
  end
3747
3755
 
3748
3756
  def deserialize(params)
@@ -3754,6 +3762,7 @@ module TencentCloud
3754
3762
  @CreatedOn = params['CreatedOn']
3755
3763
  @FlowMessage = params['FlowMessage']
3756
3764
  @Creator = params['Creator']
3765
+ @Deadline = params['Deadline']
3757
3766
  end
3758
3767
  end
3759
3768
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: tencentcloud-sdk-ess
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.0.576
4
+ version: 3.0.578
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-24 00:00:00.000000000 Z
11
+ date: 2023-05-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common