@@ -1556,34 +1556,40 @@ class ClassifyReturn(object):
1556
1556
:attr str model_version: (optional) The version of the analysis model identified by
1557
1557
the value of the `model_id` key.
1558
1558
:attr list[Element] elements: (optional) Document elements identified by the service.
1559
- :attr list[Tables] tables: (optional) Definition of tables identified in the input
1560
- document.
1561
- :attr DocStructure document_structure: (optional) The structure of the input document.
1562
- :attr list[Parties] parties: (optional) Definitions of the parties identified in the
1563
- input document.
1564
1559
:attr list[EffectiveDates] effective_dates: (optional) The date or dates on which the
1565
1560
document becomes effective.
1566
1561
:attr list[ContractAmts] contract_amounts: (optional) The monetary amounts that
1567
1562
identify the total amount of the contract that needs to be paid from one party to
1568
1563
another.
1569
1564
:attr list[TerminationDates] termination_dates: (optional) The date or dates on which
1570
1565
the document is to be terminated.
1571
- :attr list[ContractType] contract_type : (optional) The document's contract type or
1566
+ :attr list[ContractTypes] contract_types : (optional) The document's contract type or
1572
1567
types as declared in the document.
1568
+ :attr list[ContractTerms] contract_terms: (optional) The duration or durations of the
1569
+ contract.
1570
+ :attr list[PaymentTerms] payment_terms: (optional) The document's payment duration or
1571
+ durations.
1572
+ :attr list[Tables] tables: (optional) Definition of tables identified in the input
1573
+ document.
1574
+ :attr DocStructure document_structure: (optional) The structure of the input document.
1575
+ :attr list[Parties] parties: (optional) Definitions of the parties identified in the
1576
+ input document.
1573
1577
"""
1574
1578
1575
1579
def __init__ (self ,
1576
1580
document = None ,
1577
1581
model_id = None ,
1578
1582
model_version = None ,
1579
1583
elements = None ,
1580
- tables = None ,
1581
- document_structure = None ,
1582
- parties = None ,
1583
1584
effective_dates = None ,
1584
1585
contract_amounts = None ,
1585
1586
termination_dates = None ,
1586
- contract_type = None ):
1587
+ contract_types = None ,
1588
+ contract_terms = None ,
1589
+ payment_terms = None ,
1590
+ tables = None ,
1591
+ document_structure = None ,
1592
+ parties = None ):
1587
1593
"""
1588
1594
Initialize a ClassifyReturn object.
1589
1595
0 commit comments