Class: TencentCloud::Ess::V20201111::ExtractionField
- Inherits:
-
Common::AbstractModel
- Object
- Common::AbstractModel
- TencentCloud::Ess::V20201111::ExtractionField
- Defined in:
- lib/v20201111/models.rb
Overview
合同智能提取字段信息
Instance Attribute Summary collapse
-
#ChoiceList ⇒ Object
注意: 1、描述字段不能超过100个字符.
-
#Description ⇒ Object
注意: 1、描述字段不能超过100个字符.
-
#Name ⇒ Object
注意: 1、描述字段不能超过100个字符.
-
#Type ⇒ Object
注意: 1、描述字段不能超过100个字符.
-
#Values ⇒ Object
注意: 1、描述字段不能超过100个字符.
Instance Method Summary collapse
- #deserialize(params) ⇒ Object
-
#initialize(name = nil, type = nil, description = nil, values = nil, choicelist = nil) ⇒ ExtractionField
constructor
A new instance of ExtractionField.
Constructor Details
#initialize(name = nil, type = nil, description = nil, values = nil, choicelist = nil) ⇒ ExtractionField
Returns a new instance of ExtractionField.
12391 12392 12393 12394 12395 12396 12397 |
# File 'lib/v20201111/models.rb', line 12391 def initialize(name=nil, type=nil, description=nil, values=nil, choicelist=nil) @Name = name @Type = type @Description = description @Values = values @ChoiceList = choicelist end |
Instance Attribute Details
#ChoiceList ⇒ Object
注意: 1、描述字段不能超过100个字符
12389 12390 12391 |
# File 'lib/v20201111/models.rb', line 12389 def ChoiceList @ChoiceList end |
#Description ⇒ Object
注意: 1、描述字段不能超过100个字符
12389 12390 12391 |
# File 'lib/v20201111/models.rb', line 12389 def Description @Description end |
#Name ⇒ Object
注意: 1、描述字段不能超过100个字符
12389 12390 12391 |
# File 'lib/v20201111/models.rb', line 12389 def Name @Name end |
#Type ⇒ Object
注意: 1、描述字段不能超过100个字符
12389 12390 12391 |
# File 'lib/v20201111/models.rb', line 12389 def Type @Type end |
#Values ⇒ Object
注意: 1、描述字段不能超过100个字符
12389 12390 12391 |
# File 'lib/v20201111/models.rb', line 12389 def Values @Values end |
Instance Method Details
#deserialize(params) ⇒ Object
12399 12400 12401 12402 12403 12404 12405 |
# File 'lib/v20201111/models.rb', line 12399 def deserialize(params) @Name = params['Name'] @Type = params['Type'] @Description = params['Description'] @Values = params['Values'] @ChoiceList = params['ChoiceList'] end |