A single row returned from the data table API.

interface IDataTableRow {
    data: {
        [key: string]: any;
    };
    id: string;
    sortOrder: number;
    updatedAt: string;
}

Properties

data: {
    [key: string]: any;
}

Column key-value pairs.

id: string

Row ID.

sortOrder: number

Sort order value.

updatedAt: string

ISO 8601 last-modified timestamp.