/** * 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 { CrdtId } from './CrdtId'; /** * Defines a user's selection of columns and rows for a replica. * @export * @interface ReplicaSelectionModel */ export interface ReplicaSelectionModel { /** * Each SelectionId is an arr node's id from the 'columnOrder' array * @type {Array} * @memberof ReplicaSelectionModel */ columnSelection?: Array; /** * Each SelectionId is an arr node's id from the 'rows' array * @type {Array} * @memberof ReplicaSelectionModel */ rowSelection?: Array; /** * When true, all columns are selected and 'columnSelection' will be ignored. * @type {boolean} * @memberof ReplicaSelectionModel */ columnSelectAll?: boolean; /** * When true, all rows are selected, and 'rowSelection' will be ignored. * @type {boolean} * @memberof ReplicaSelectionModel */ rowSelectAll?: boolean; } /** * Check if a given object implements the ReplicaSelectionModel interface. */ export declare function instanceOfReplicaSelectionModel(value: object): value is ReplicaSelectionModel; export declare function ReplicaSelectionModelFromJSON(json: any): ReplicaSelectionModel; export declare function ReplicaSelectionModelFromJSONTyped(json: any, ignoreDiscriminator: boolean): ReplicaSelectionModel; export declare function ReplicaSelectionModelToJSON(json: any): ReplicaSelectionModel; export declare function ReplicaSelectionModelToJSONTyped(value?: ReplicaSelectionModel | null, ignoreDiscriminator?: boolean): any;