Class: TencentCloud::Ess::V20201111::FeedbackInfoReason
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::FeedbackInfoReason
- Defined in:
- lib/v20201111/models.rb
Overview
信息提取结果字段反馈错误原因
Instance Attribute Summary collapse
-
#ReasonContent ⇒ Object
值如下: - 1: 提取错误(提取不精准、提取为空等) - 2: 其他错误. -
#ReasonType ⇒ Object
值如下: - 1: 提取错误(提取不精准、提取为空等) - 2: 其他错误.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(reasontype = nil, reasoncontent = nil) ⇒ FeedbackInfoReason
constructor
A new instance of FeedbackInfoReason.
Constructor Details
#initialize(reasontype = nil, reasoncontent = nil) ⇒ FeedbackInfoReason
Returns a new instance of FeedbackInfoReason.
12628 12629 12630 12631 |
# File 'lib/v20201111/models.rb', line 12628 def initialize(reasontype=nil, reasoncontent=nil) @ReasonType = reasontype @ReasonContent = reasoncontent end |
Instance Attribute Details
#ReasonContent ⇒ Object
值如下:
- 1: 提取错误(提取不精准、提取为空等)
- 2: 其他错误
12626 12627 12628 |
# File 'lib/v20201111/models.rb', line 12626 def ReasonContent @ReasonContent end |
#ReasonType ⇒ Object
值如下:
- 1: 提取错误(提取不精准、提取为空等)
- 2: 其他错误
12626 12627 12628 |
# File 'lib/v20201111/models.rb', line 12626 def ReasonType @ReasonType end |
Instance Method Details
#deserialize(params) ⇒ Object
12633 12634 12635 12636 |
# File 'lib/v20201111/models.rb', line 12633 def deserialize(params) @ReasonType = params['ReasonType'] @ReasonContent = params['ReasonContent'] end |