Class: TencentCloud::Ess::V20201111::FlowBrief
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::FlowBrief
- Defined in:
- lib/v20201111/models.rb
Overview
合同流程的基础信息
Instance Attribute Summary collapse
-
#CreatedOn ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#Creator ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#Deadline ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#FlowDescription ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#FlowId ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#FlowMessage ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#FlowName ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#FlowStatus ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#FlowType ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#TemplateId ⇒ Object
自定义合同类型的位置,在下图所示地方:
. -
#UserFlowType ⇒ Object
自定义合同类型的位置,在下图所示地方:
.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowid = nil, flowname = nil, flowdescription = nil, flowtype = nil, flowstatus = nil, createdon = nil, flowmessage = nil, creator = nil, deadline = nil, userflowtype = nil, templateid = nil) ⇒ FlowBrief
constructor
A new instance of FlowBrief.
Constructor Details
#initialize(flowid = nil, flowname = nil, flowdescription = nil, flowtype = nil, flowstatus = nil, createdon = nil, flowmessage = nil, creator = nil, deadline = nil, userflowtype = nil, templateid = nil) ⇒ FlowBrief
Returns a new instance of FlowBrief.
13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 |
# File 'lib/v20201111/models.rb', line 13098 def initialize(flowid=nil, flowname=nil, flowdescription=nil, flowtype=nil, flowstatus=nil, createdon=nil, =nil, creator=nil, deadline=nil, userflowtype=nil, templateid=nil) @FlowId = flowid @FlowName = flowname @FlowDescription = flowdescription @FlowType = flowtype @FlowStatus = flowstatus @CreatedOn = createdon @FlowMessage = @Creator = creator @Deadline = deadline @UserFlowType = userflowtype @TemplateId = templateid end |
Instance Attribute Details
#CreatedOn ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def CreatedOn @CreatedOn end |
#Creator ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def Creator @Creator end |
#Deadline ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def Deadline @Deadline end |
#FlowDescription ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def FlowDescription @FlowDescription end |
#FlowId ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def FlowId @FlowId end |
#FlowMessage ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def FlowMessage @FlowMessage end |
#FlowName ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def FlowName @FlowName end |
#FlowStatus ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def FlowStatus @FlowStatus end |
#FlowType ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def FlowType @FlowType end |
#TemplateId ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def TemplateId @TemplateId end |
#UserFlowType ⇒ Object
自定义合同类型的位置,在下图所示地方:

13096 13097 13098 |
# File 'lib/v20201111/models.rb', line 13096 def UserFlowType @UserFlowType end |
Instance Method Details
#deserialize(params) ⇒ Object
13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 |
# File 'lib/v20201111/models.rb', line 13112 def deserialize(params) @FlowId = params['FlowId'] @FlowName = params['FlowName'] @FlowDescription = params['FlowDescription'] @FlowType = params['FlowType'] @FlowStatus = params['FlowStatus'] @CreatedOn = params['CreatedOn'] @FlowMessage = params['FlowMessage'] @Creator = params['Creator'] @Deadline = params['Deadline'] unless params['UserFlowType'].nil? @UserFlowType = UserFlowType.new @UserFlowType.deserialize(params['UserFlowType']) end @TemplateId = params['TemplateId'] end |