/** * 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. */ /** * The immutable (stable) identifier for a cell. * @export * @interface CellId */ export interface CellId { /** * The unique identifier for this cell's row * @type {string} * @memberof CellId */ rowId?: string; /** * The unique name for this cell's column * @type {string} * @memberof CellId */ columnName?: string; } /** * Check if a given object implements the CellId interface. */ export declare function instanceOfCellId(value: object): value is CellId; export declare function CellIdFromJSON(json: any): CellId; export declare function CellIdFromJSONTyped(json: any, ignoreDiscriminator: boolean): CellId; export declare function CellIdToJSON(json: any): CellId; export declare function CellIdToJSONTyped(value?: CellId | null, ignoreDiscriminator?: boolean): any;