tencentcloud-sdk-ess 1.0.279 → 1.0.280

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/v20201111/models.rb +13 -9
  4. metadata +2 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 9068dc837db8e1bfa9a2ef1390aefc1d1759480f
4
- data.tar.gz: 23c540b94d8684f02b475ad6ba47baca5dbb7be9
3
+ metadata.gz: 0dd874161d10f6beaa1fd9f179ac14ec419f2117
4
+ data.tar.gz: 84dc731ef6e85db032d9bf968ddb1d148742e587
5
5
  SHA512:
6
- metadata.gz: 47492a9489f755c2358da6692d84d290f32ebc5300039ed209295611fd9ceec96b06826e9d07b6172cd487ae78b42509496c431fd797600d3a8b3c20f1d52c5a
7
- data.tar.gz: ca6658b90787c3788d53d83209bd260d88f73b47c931468a8bbf522615ee0694341feb5d2c45d98e155ceaaee7dd7dd5808489c1e6893ffcaf70e88ec3f346e0
6
+ metadata.gz: 1d58f5654ebca43baca0ceb174873ed96c6eca05cf9fd07a321ef3418972d964abf4a443a641d0a84e519370d6bb1c665054c0f20874a04d62da76984268a13f
7
+ data.tar.gz: ff0877d41cd29494044615e56ca395a09c13fe51446a1905427eac8443dbd87e7d44bd7691342483c115358d549e888c972aa7b1a2deb46f45197ade8b55624b
data/lib/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.279
1
+ 1.0.280
@@ -102,20 +102,20 @@ module TencentCloud
102
102
  class CancelFlowRequest < TencentCloud::Common::AbstractModel
103
103
  # @param Operator: 操作用户id
104
104
  # @type Operator: :class:`Tencentcloud::Ess.v20201111.models.UserInfo`
105
- # @param Agent: 应用相关信息
106
- # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
107
105
  # @param FlowId: 流程id
108
106
  # @type FlowId: String
109
107
  # @param CancelMessage: 撤销原因
110
108
  # @type CancelMessage: String
109
+ # @param Agent: 应用相关信息
110
+ # @type Agent: :class:`Tencentcloud::Ess.v20201111.models.Agent`
111
111
 
112
- attr_accessor :Operator, :Agent, :FlowId, :CancelMessage
112
+ attr_accessor :Operator, :FlowId, :CancelMessage, :Agent
113
113
 
114
- def initialize(operator=nil, agent=nil, flowid=nil, cancelmessage=nil)
114
+ def initialize(operator=nil, flowid=nil, cancelmessage=nil, agent=nil)
115
115
  @Operator = operator
116
- @Agent = agent
117
116
  @FlowId = flowid
118
117
  @CancelMessage = cancelmessage
118
+ @Agent = agent
119
119
  end
120
120
 
121
121
  def deserialize(params)
@@ -123,12 +123,12 @@ module TencentCloud
123
123
  @Operator = UserInfo.new
124
124
  @Operator.deserialize(params['Operator'])
125
125
  end
126
+ @FlowId = params['FlowId']
127
+ @CancelMessage = params['CancelMessage']
126
128
  unless params['Agent'].nil?
127
129
  @Agent = Agent.new
128
130
  @Agent.deserialize(params['Agent'])
129
131
  end
130
- @FlowId = params['FlowId']
131
- @CancelMessage = params['CancelMessage']
132
132
  end
133
133
  end
134
134
 
@@ -891,10 +891,12 @@ module TencentCloud
891
891
  # @type PreReadTime: Integer
892
892
  # @param NotifyType: 是否发送短信,sms--短信通知,none--不通知,默认为sms
893
893
  # @type NotifyType: String
894
+ # @param VerifyChannel: 签署意愿确认渠道,WEIXINAPP:人脸识别
895
+ # @type VerifyChannel: Array
894
896
 
895
- attr_accessor :ApproverType, :OrganizationName, :Required, :ApproverName, :ApproverMobile, :ApproverIdCardNumber, :ApproverIdCardType, :RecipientId, :UserId, :IsFullText, :PreReadTime, :NotifyType
897
+ attr_accessor :ApproverType, :OrganizationName, :Required, :ApproverName, :ApproverMobile, :ApproverIdCardNumber, :ApproverIdCardType, :RecipientId, :UserId, :IsFullText, :PreReadTime, :NotifyType, :VerifyChannel
896
898
 
897
- def initialize(approvertype=nil, organizationname=nil, required=nil, approvername=nil, approvermobile=nil, approveridcardnumber=nil, approveridcardtype=nil, recipientid=nil, userid=nil, isfulltext=nil, prereadtime=nil, notifytype=nil)
899
+ def initialize(approvertype=nil, organizationname=nil, required=nil, approvername=nil, approvermobile=nil, approveridcardnumber=nil, approveridcardtype=nil, recipientid=nil, userid=nil, isfulltext=nil, prereadtime=nil, notifytype=nil, verifychannel=nil)
898
900
  @ApproverType = approvertype
899
901
  @OrganizationName = organizationname
900
902
  @Required = required
@@ -907,6 +909,7 @@ module TencentCloud
907
909
  @IsFullText = isfulltext
908
910
  @PreReadTime = prereadtime
909
911
  @NotifyType = notifytype
912
+ @VerifyChannel = verifychannel
910
913
  end
911
914
 
912
915
  def deserialize(params)
@@ -922,6 +925,7 @@ module TencentCloud
922
925
  @IsFullText = params['IsFullText']
923
926
  @PreReadTime = params['PreReadTime']
924
927
  @NotifyType = params['NotifyType']
928
+ @VerifyChannel = params['VerifyChannel']
925
929
  end
926
930
  end
927
931
 
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: 1.0.279
4
+ version: 1.0.280
5
5
  platform: ruby
6
6
  authors:
7
7
  - Tencent Cloud
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-03-18 00:00:00.000000000 Z
11
+ date: 2022-03-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: tencentcloud-sdk-common