TableRow¶
- 
class oci.ai_document.models.TableRow(**kwargs)¶
- Bases: - object- A single row in a table. - Methods - __init__(**kwargs)- Initializes a new TableRow object with values from keyword arguments. - Attributes - cells- [Required] Gets the cells of this TableRow. - 
__init__(**kwargs)¶
- Initializes a new TableRow object with values from keyword arguments. The following keyword arguments are supported (corresponding to the getters/setters of this class): - Parameters: - cells (list[oci.ai_document.models.Cell]) – The value to assign to the cells property of this TableRow. 
 - 
cells¶
- [Required] Gets the cells of this TableRow. The cells in the row. - Returns: - The cells of this TableRow. - Return type: - list[oci.ai_document.models.Cell] 
 
-