Class: TencentCloud::Ess::V20201111::CreateLMInformationExtractionTaskFieldFeedbackRequest

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

Overview

CreateLMInformationExtractionTaskFieldFeedback请求参数结构体

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(operator = nil, id = nil, feedback = nil) ⇒ CreateLMInformationExtractionTaskFieldFeedbackRequest

Returns a new instance of CreateLMInformationExtractionTaskFieldFeedbackRequest.



5679
5680
5681
5682
5683
# File 'lib/v20201111/models.rb', line 5679

def initialize(operator=nil, id=nil, feedback=nil)
  @Operator = operator
  @Id = id
  @Feedback = feedback
end

Instance Attribute Details

#FeedbackObject

Parameters:

  • Operator:

    执行合同智能提取任务的员工信息。

  • Id:

    合同智能提取任务结果字段ID值。该参数通过调用接口获取合同智能提取任务详情返回中的Results. ExtractionFieldResults.Id获取。

  • Feedback:

    合同智能提取任务反馈信息



5677
5678
5679
# File 'lib/v20201111/models.rb', line 5677

def Feedback
  @Feedback
end

#IdObject

Parameters:

  • Operator:

    执行合同智能提取任务的员工信息。

  • Id:

    合同智能提取任务结果字段ID值。该参数通过调用接口获取合同智能提取任务详情返回中的Results. ExtractionFieldResults.Id获取。

  • Feedback:

    合同智能提取任务反馈信息



5677
5678
5679
# File 'lib/v20201111/models.rb', line 5677

def Id
  @Id
end

#OperatorObject

Parameters:

  • Operator:

    执行合同智能提取任务的员工信息。

  • Id:

    合同智能提取任务结果字段ID值。该参数通过调用接口获取合同智能提取任务详情返回中的Results. ExtractionFieldResults.Id获取。

  • Feedback:

    合同智能提取任务反馈信息



5677
5678
5679
# File 'lib/v20201111/models.rb', line 5677

def Operator
  @Operator
end

Instance Method Details

#deserialize(params) ⇒ Object



5685
5686
5687
5688
5689
5690
5691
5692
5693
5694
5695
# File 'lib/v20201111/models.rb', line 5685

def deserialize(params)
  unless params['Operator'].nil?
    @Operator = UserInfo.new
    @Operator.deserialize(params['Operator'])
  end
  @Id = params['Id']
  unless params['Feedback'].nil?
    @Feedback = FeedbackInfo.new
    @Feedback.deserialize(params['Feedback'])
  end
end