Class: TencentCloud::Essbasic::V20201222::CreateFlowByFilesRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Essbasic::V20201222::CreateFlowByFilesRequest
- Defined in:
- lib/v20201222/models.rb
Overview
CreateFlowByFiles请求参数结构体
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(caller = nil, flowinfo = nil, fileids = nil, customid = nil) ⇒ CreateFlowByFilesRequest
constructor
A new instance of CreateFlowByFilesRequest.
Constructor Details
#initialize(caller = nil, flowinfo = nil, fileids = nil, customid = nil) ⇒ CreateFlowByFilesRequest
Returns a new instance of CreateFlowByFilesRequest.
1053 1054 1055 1056 1057 1058 |
# File 'lib/v20201222/models.rb', line 1053 def initialize(caller=nil, flowinfo=nil, fileids=nil, customid=nil) @Caller = caller @FlowInfo = flowinfo @FileIds = fileids @CustomId = customid end |
Instance Attribute Details
#Caller ⇒ Object
1051 1052 1053 |
# File 'lib/v20201222/models.rb', line 1051 def Caller @Caller end |
#CustomId ⇒ Object
1051 1052 1053 |
# File 'lib/v20201222/models.rb', line 1051 def CustomId @CustomId end |
#FileIds ⇒ Object
1051 1052 1053 |
# File 'lib/v20201222/models.rb', line 1051 def FileIds @FileIds end |
#FlowInfo ⇒ Object
1051 1052 1053 |
# File 'lib/v20201222/models.rb', line 1051 def FlowInfo @FlowInfo end |
Instance Method Details
#deserialize(params) ⇒ Object
1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 |
# File 'lib/v20201222/models.rb', line 1060 def deserialize(params) unless params['Caller'].nil? @Caller = Caller.new @Caller.deserialize(params['Caller']) end unless params['FlowInfo'].nil? @FlowInfo = FlowInfo.new @FlowInfo.deserialize(params['FlowInfo']) end @FileIds = params['FileIds'] @CustomId = params['CustomId'] end |