Class: TencentCloud::Ess::V20201111::CreateFlowGroupByFilesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::CreateFlowGroupByFilesResponse
- Defined in:
- lib/v20201111/models.rb
Overview
CreateFlowGroupByFiles返回参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowgroupid = nil, flowids = nil, approvers = nil, requestid = nil) ⇒ CreateFlowGroupByFilesResponse
constructor
A new instance of CreateFlowGroupByFilesResponse.
Constructor Details
#initialize(flowgroupid = nil, flowids = nil, approvers = nil, requestid = nil) ⇒ CreateFlowGroupByFilesResponse
Returns a new instance of CreateFlowGroupByFilesResponse.
4418 4419 4420 4421 4422 4423 |
# File 'lib/v20201111/models.rb', line 4418 def initialize(flowgroupid=nil, flowids=nil, approvers=nil, requestid=nil) @FlowGroupId = flowgroupid @FlowIds = flowids @Approvers = approvers @RequestId = requestid end |
Instance Attribute Details
#Approvers ⇒ Object
4416 4417 4418 |
# File 'lib/v20201111/models.rb', line 4416 def Approvers @Approvers end |
#FlowGroupId ⇒ Object
4416 4417 4418 |
# File 'lib/v20201111/models.rb', line 4416 def FlowGroupId @FlowGroupId end |
#FlowIds ⇒ Object
4416 4417 4418 |
# File 'lib/v20201111/models.rb', line 4416 def FlowIds @FlowIds end |
#RequestId ⇒ Object
4416 4417 4418 |
# File 'lib/v20201111/models.rb', line 4416 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 |
# File 'lib/v20201111/models.rb', line 4425 def deserialize(params) @FlowGroupId = params['FlowGroupId'] @FlowIds = params['FlowIds'] unless params['Approvers'].nil? @Approvers = [] params['Approvers'].each do |i| flowgroupapprovers_tmp = FlowGroupApprovers.new flowgroupapprovers_tmp.deserialize(i) @Approvers << flowgroupapprovers_tmp end end @RequestId = params['RequestId'] end |