/** * Synapse REST API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v1 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ColumnModel } from './ColumnModel'; /** * * @export * @interface ListWrapperOfColumnModel */ export interface ListWrapperOfColumnModel { /** * * @type {Array} * @memberof ListWrapperOfColumnModel */ list?: Array; } /** * Check if a given object implements the ListWrapperOfColumnModel interface. */ export declare function instanceOfListWrapperOfColumnModel(value: object): value is ListWrapperOfColumnModel; export declare function ListWrapperOfColumnModelFromJSON(json: any): ListWrapperOfColumnModel; export declare function ListWrapperOfColumnModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ListWrapperOfColumnModel; export declare function ListWrapperOfColumnModelToJSON(json: any): ListWrapperOfColumnModel; export declare function ListWrapperOfColumnModelToJSONTyped(value?: ListWrapperOfColumnModel | null, ignoreDiscriminator?: boolean): any;