Class: TencentCloud::Wedata::V20210820::CreateOfflineTaskRequest
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Wedata::V20210820::CreateOfflineTaskRequest
- Defined in:
- lib/v20210820/models.rb
Overview
CreateOfflineTask请求参数结构体
Instance Attribute Summary collapse
- #CycleStep ⇒ Object
- #DelayTime ⇒ Object
- #EndTime ⇒ Object
- #Notes ⇒ Object
- #ProjectId ⇒ Object
- #StartTime ⇒ Object
- #TaskAction ⇒ Object
- #TaskImportInfo ⇒ Object
- #TaskMode ⇒ Object
- #TaskName ⇒ Object
- #TypeId ⇒ Object
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(projectid = nil, cyclestep = nil, delaytime = nil, endtime = nil, notes = nil, starttime = nil, taskname = nil, typeid = nil, taskaction = nil, taskmode = nil, taskimportinfo = nil) ⇒ CreateOfflineTaskRequest
constructor
A new instance of CreateOfflineTaskRequest.
Constructor Details
#initialize(projectid = nil, cyclestep = nil, delaytime = nil, endtime = nil, notes = nil, starttime = nil, taskname = nil, typeid = nil, taskaction = nil, taskmode = nil, taskimportinfo = nil) ⇒ CreateOfflineTaskRequest
5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 |
# File 'lib/v20210820/models.rb', line 5146 def initialize(projectid=nil, cyclestep=nil, delaytime=nil, endtime=nil, notes=nil, starttime=nil, taskname=nil, typeid=nil, taskaction=nil, taskmode=nil, taskimportinfo=nil) @ProjectId = projectid @CycleStep = cyclestep @DelayTime = delaytime @EndTime = endtime @Notes = notes @StartTime = starttime @TaskName = taskname @TypeId = typeid @TaskAction = taskaction @TaskMode = taskmode @TaskImportInfo = taskimportinfo end |
Instance Attribute Details
#CycleStep ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def CycleStep @CycleStep end |
#DelayTime ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def DelayTime @DelayTime end |
#EndTime ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def EndTime @EndTime end |
#Notes ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def Notes @Notes end |
#ProjectId ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def ProjectId @ProjectId end |
#StartTime ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def StartTime @StartTime end |
#TaskAction ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def TaskAction @TaskAction end |
#TaskImportInfo ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def TaskImportInfo @TaskImportInfo end |
#TaskMode ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def TaskMode @TaskMode end |
#TaskName ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def TaskName @TaskName end |
#TypeId ⇒ Object
5144 5145 5146 |
# File 'lib/v20210820/models.rb', line 5144 def TypeId @TypeId end |
Instance Method Details
#deserialize(params) ⇒ Object
5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 |
# File 'lib/v20210820/models.rb', line 5160 def deserialize(params) @ProjectId = params['ProjectId'] @CycleStep = params['CycleStep'] @DelayTime = params['DelayTime'] @EndTime = params['EndTime'] @Notes = params['Notes'] @StartTime = params['StartTime'] @TaskName = params['TaskName'] @TypeId = params['TypeId'] @TaskAction = params['TaskAction'] @TaskMode = params['TaskMode'] unless params['TaskImportInfo'].nil? @TaskImportInfo = TaskImportInfo.new @TaskImportInfo.deserialize(params['TaskImportInfo']) end end |