export interface ISysviewDataFlds {
    /**
     * Each element in the array describes the contents of the array elements in the Values array.
     */
    fields: string[];
    /**
     * The data is organized as a two dimensional array, where the first dimension represents
     * a field definition, and the second dimension represents attributes for the defintion.
     *
     * In the first dimension, the fields are typically ordered as you would see them in the
     * default format of the corresponding SYSVIEW display.
     *
     * In the second dimension, the elements are ordered according to the elements listed
     * in the Fields array. These arrays represent information about each field returned in the DataRows.
     */
    values: string[][];
}
