Skip to content

OCITableRow

Bases: OCIType

The OCITableRow type is used in responses only, never in requests. It occurs inside the OCITable type. The OCITableRow consists columns of strings. Clients should not assume any particular column order as future revisions of the protocol may move or add columns. See the OCITable data type for more information.

Attributes:

col (List[str]):
Source code in src/mercury_ocip/commands/commands.py
@dataclass(kw_only=True)
class OCITableRow(OCIType):
    """The OCITableRow type is used in responses only, never in requests. It occurs
        inside the OCITable type. The OCITableRow consists columns of strings.
        Clients should not assume any particular column order as future
        revisions of the protocol may move or add columns. See the OCITable data type
        for more information.

    Attributes:

        col (List[str]):

    """

    col: List[str] = field(metadata={"alias": "col"})