Class: TencentCloud::Ess::V20201111::CreateFlowByFilesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateFlowByFilesResponse
- Defined in:
- lib/v20201111/models.rb
Overview
CreateFlowByFiles返回参数结构体
Instance Attribute Summary collapse
-
#Approvers ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL.
-
#FlowId ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL.
-
#PreviewUrl ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL.
-
#RequestId ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowid = nil, previewurl = nil, approvers = nil, requestid = nil) ⇒ CreateFlowByFilesResponse
constructor
A new instance of CreateFlowByFilesResponse.
Constructor Details
#initialize(flowid = nil, previewurl = nil, approvers = nil, requestid = nil) ⇒ CreateFlowByFilesResponse
Returns a new instance of CreateFlowByFilesResponse.
4154 4155 4156 4157 4158 4159 |
# File 'lib/v20201111/models.rb', line 4154 def initialize(flowid=nil, previewurl=nil, approvers=nil, requestid=nil) @FlowId = flowid @PreviewUrl = previewurl @Approvers = approvers @RequestId = requestid end |
Instance Attribute Details
#Approvers ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
4152 4153 4154 |
# File 'lib/v20201111/models.rb', line 4152 def Approvers @Approvers end |
#FlowId ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
4152 4153 4154 |
# File 'lib/v20201111/models.rb', line 4152 def FlowId @FlowId end |
#PreviewUrl ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
4152 4153 4154 |
# File 'lib/v20201111/models.rb', line 4152 def PreviewUrl @PreviewUrl end |
#RequestId ⇒ Object
注:如果是预览模式(即NeedPreview设置为true)时, 才会有此预览链接URL
4152 4153 4154 |
# File 'lib/v20201111/models.rb', line 4152 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 |
# File 'lib/v20201111/models.rb', line 4161 def deserialize(params) @FlowId = params['FlowId'] @PreviewUrl = params['PreviewUrl'] unless params['Approvers'].nil? @Approvers = [] params['Approvers'].each do |i| approveritem_tmp = ApproverItem.new approveritem_tmp.deserialize(i) @Approvers << approveritem_tmp end end @RequestId = params['RequestId'] end |