Class: TencentCloud::Dts::V20211206::ErrorInfoItem
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::ErrorInfoItem
- Defined in:
- lib/v20211206/models.rb
Overview
任务错误信息
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(code = nil, solution = nil, errorlog = nil, helpdoc = nil) ⇒ ErrorInfoItem
constructor
A new instance of ErrorInfoItem.
Constructor Details
#initialize(code = nil, solution = nil, errorlog = nil, helpdoc = nil) ⇒ ErrorInfoItem
Returns a new instance of ErrorInfoItem.
4303 4304 4305 4306 4307 4308 |
# File 'lib/v20211206/models.rb', line 4303 def initialize(code=nil, solution=nil, errorlog=nil, helpdoc=nil) @Code = code @Solution = solution @ErrorLog = errorlog @HelpDoc = helpdoc end |
Instance Attribute Details
#Code ⇒ Object
4301 4302 4303 |
# File 'lib/v20211206/models.rb', line 4301 def Code @Code end |
#ErrorLog ⇒ Object
4301 4302 4303 |
# File 'lib/v20211206/models.rb', line 4301 def ErrorLog @ErrorLog end |
#HelpDoc ⇒ Object
4301 4302 4303 |
# File 'lib/v20211206/models.rb', line 4301 def HelpDoc @HelpDoc end |
#Solution ⇒ Object
4301 4302 4303 |
# File 'lib/v20211206/models.rb', line 4301 def Solution @Solution end |
Instance Method Details
#deserialize(params) ⇒ Object
4310 4311 4312 4313 4314 4315 |
# File 'lib/v20211206/models.rb', line 4310 def deserialize(params) @Code = params['Code'] @Solution = params['Solution'] @ErrorLog = params['ErrorLog'] @HelpDoc = params['HelpDoc'] end |