/* istanbul ignore file */
/* tslint:disable */
/* eslint-disable */

/**
 * Decoded table data
 */
export type DecodedTableData = {
    /**
     * Key of table in JSON
     */
    key: any;
    /**
     * Type of key
     */
    key_type: string;
    /**
     * Value of table in JSON
     */
    value: any;
    /**
     * Type of value
     */
    value_type: string;
};

