Class: TencentCloud::Essbasic::V20201222::CreateSignUrlRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::CreateSignUrlRequest
- Defined in:
- lib/v20201222/models.rb
Overview
CreateSignUrl请求参数结构体
Instance Attribute Summary collapse
-
#Caller ⇒ Object
-
#CatalogId ⇒ Object
-
#Deadline ⇒ Object
-
#FlowId ⇒ Object
-
#SignId ⇒ Object
-
#SignUrlType ⇒ Object
-
#UserId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(caller = nil, userid = nil, deadline = nil, catalogid = nil, flowid = nil, signurltype = nil, signid = nil) ⇒ CreateSignUrlRequest
constructor
A new instance of CreateSignUrlRequest.
Constructor Details
#initialize(caller = nil, userid = nil, deadline = nil, catalogid = nil, flowid = nil, signurltype = nil, signid = nil) ⇒ CreateSignUrlRequest
Returns a new instance of CreateSignUrlRequest.
1377 1378 1379 1380 1381 1382 1383 1384 1385 |
# File 'lib/v20201222/models.rb', line 1377 def initialize(caller=nil, userid=nil, deadline=nil, catalogid=nil, flowid=nil, signurltype=nil, signid=nil) @Caller = caller @UserId = userid @Deadline = deadline @CatalogId = catalogid @FlowId = flowid @SignUrlType = signurltype @SignId = signid end |
Instance Attribute Details
#Caller ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def Caller @Caller end |
#CatalogId ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def CatalogId @CatalogId end |
#Deadline ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def Deadline @Deadline end |
#FlowId ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def FlowId @FlowId end |
#SignId ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def SignId @SignId end |
#SignUrlType ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def SignUrlType @SignUrlType end |
#UserId ⇒ Object
- FLOW - 单流程签署 (默认)
- CATALOG - 目录签署
1375 1376 1377 |
# File 'lib/v20201222/models.rb', line 1375 def UserId @UserId end |
Instance Method Details
#deserialize(params) ⇒ Object
1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 |
# File 'lib/v20201222/models.rb', line 1387 def deserialize(params) unless params['Caller'].nil? @Caller = Caller.new @Caller.deserialize(params['Caller']) end @UserId = params['UserId'] @Deadline = params['Deadline'] @CatalogId = params['CatalogId'] @FlowId = params['FlowId'] @SignUrlType = params['SignUrlType'] @SignId = params['SignId'] end |