/** * 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. */ /** * JSON schema for Row POJO * @export * @interface ModelRow */ export interface ModelRow { /** * The the id of the entity to which this reference refers * @type {Array} * @memberof ModelRow */ cells?: Array; } /** * Check if a given object implements the ModelRow interface. */ export declare function instanceOfModelRow(value: object): value is ModelRow; export declare function ModelRowFromJSON(json: any): ModelRow; export declare function ModelRowFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelRow; export declare function ModelRowToJSON(json: any): ModelRow; export declare function ModelRowToJSONTyped(value?: ModelRow | null, ignoreDiscriminator?: boolean): any;