Class: TencentCloud::Essbasic::V20210526::ChannelCreateFlowGroupByFilesResponse
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20210526::ChannelCreateFlowGroupByFilesResponse
- Defined in:
- lib/v20210526/models.rb
Overview
ChannelCreateFlowGroupByFiles返回参数结构体
Instance Attribute Summary collapse
-
#Approvers ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致. -
#FlowGroupId ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致. -
#FlowIds ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致. -
#RequestId ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(flowgroupid = nil, flowids = nil, approvers = nil, requestid = nil) ⇒ ChannelCreateFlowGroupByFilesResponse
constructor
A new instance of ChannelCreateFlowGroupByFilesResponse.
Constructor Details
#initialize(flowgroupid = nil, flowids = nil, approvers = nil, requestid = nil) ⇒ ChannelCreateFlowGroupByFilesResponse
Returns a new instance of ChannelCreateFlowGroupByFilesResponse.
2109 2110 2111 2112 2113 2114 |
# File 'lib/v20210526/models.rb', line 2109 def initialize(flowgroupid=nil, flowids=nil, approvers=nil, requestid=nil) @FlowGroupId = flowgroupid @FlowIds = flowids @Approvers = approvers @RequestId = requestid end |
Instance Attribute Details
#Approvers ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致
2107 2108 2109 |
# File 'lib/v20210526/models.rb', line 2107 def Approvers @Approvers end |
#FlowGroupId ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致
2107 2108 2109 |
# File 'lib/v20210526/models.rb', line 2107 def FlowGroupId @FlowGroupId end |
#FlowIds ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致
2107 2108 2109 |
# File 'lib/v20210526/models.rb', line 2107 def FlowIds @FlowIds end |
#RequestId ⇒ Object
注:
此数组的顺序和入参中的FlowGroupInfos顺序一致
2107 2108 2109 |
# File 'lib/v20210526/models.rb', line 2107 def RequestId @RequestId end |
Instance Method Details
#deserialize(params) ⇒ Object
2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 |
# File 'lib/v20210526/models.rb', line 2116 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 |