Class: TencentCloud::Essbasic::V20210526::ArchiveDynamicFlowResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ArchiveDynamicFlowResponse
- Defined in:
- lib/v20210526/models.rb
Overview
ArchiveDynamicFlow返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowid = nil, approvers = nil, requestid = nil) ⇒ ArchiveDynamicFlowResponse
constructor
A new instance of ArchiveDynamicFlowResponse.
Constructor Details
#initialize(flowid = nil, approvers = nil, requestid = nil) ⇒ ArchiveDynamicFlowResponse
Returns a new instance of ArchiveDynamicFlowResponse.
225 226 227 228 229 |
# File 'lib/v20210526/models.rb', line 225 def initialize(flowid=nil, approvers=nil, requestid=nil) @FlowId = flowid @Approvers = approvers @RequestId = requestid end |
Instance Attribute Details
#Approvers ⇒ Object
223 224 225 |
# File 'lib/v20210526/models.rb', line 223 def Approvers @Approvers end |
#FlowId ⇒ Object
223 224 225 |
# File 'lib/v20210526/models.rb', line 223 def FlowId @FlowId end |
#RequestId ⇒ Object
223 224 225 |
# File 'lib/v20210526/models.rb', line 223 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
231 232 233 234 235 236 237 238 239 240 241 242 |
# File 'lib/v20210526/models.rb', line 231 def deserialize(params) @FlowId = params['FlowId'] unless params['Approvers'].nil? @Approvers = [] params['Approvers'].each do |i| channelarchivedynamicapproverdata_tmp = ChannelArchiveDynamicApproverData.new channelarchivedynamicapproverdata_tmp.deserialize(i) @Approvers << channelarchivedynamicapproverdata_tmp end end @RequestId = params['RequestId'] end |