Class: TencentCloud::Dts::V20211206::ErrInfo
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Dts::V20211206::ErrInfo
- Defined in:
- lib/v20211206/models.rb
Overview
错误信息及其解决方案
Instance Attribute Summary collapse
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(reason = nil, message = nil, solution = nil) ⇒ ErrInfo
constructor
A new instance of ErrInfo.
Constructor Details
#initialize(reason = nil, message = nil, solution = nil) ⇒ ErrInfo
Returns a new instance of ErrInfo.
4277 4278 4279 4280 4281 |
# File 'lib/v20211206/models.rb', line 4277 def initialize(reason=nil, =nil, solution=nil) @Reason = reason @Message = @Solution = solution end |
Instance Attribute Details
#Message ⇒ Object
4275 4276 4277 |
# File 'lib/v20211206/models.rb', line 4275 def Message @Message end |
#Reason ⇒ Object
4275 4276 4277 |
# File 'lib/v20211206/models.rb', line 4275 def Reason @Reason end |
#Solution ⇒ Object
4275 4276 4277 |
# File 'lib/v20211206/models.rb', line 4275 def Solution @Solution end |
Instance Method Details
#deserialize(params) ⇒ Object
4283 4284 4285 4286 4287 |
# File 'lib/v20211206/models.rb', line 4283 def deserialize(params) @Reason = params['Reason'] @Message = params['Message'] @Solution = params['Solution'] end |