Class: TencentCloud::Dts::V20211206::ErrInfo

Inherits:
Common::AbstractModel
  • Object
show all
Defined in:
lib/v20211206/models.rb

Overview

错误信息及其解决方案

Instance Attribute Summary collapse

Instance Method Summary collapse

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, message=nil, solution=nil)
  @Reason = reason
  @Message = message
  @Solution = solution
end

Instance Attribute Details

#MessageObject

Parameters:

  • Reason:

    错误原因

  • Message:

    错误信息

  • Solution:

    解决方案



4275
4276
4277
# File 'lib/v20211206/models.rb', line 4275

def Message
  @Message
end

#ReasonObject

Parameters:

  • Reason:

    错误原因

  • Message:

    错误信息

  • Solution:

    解决方案



4275
4276
4277
# File 'lib/v20211206/models.rb', line 4275

def Reason
  @Reason
end

#SolutionObject

Parameters:

  • Reason:

    错误原因

  • Message:

    错误信息

  • Solution:

    解决方案



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