/** * 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. */ /** * Row ID inclusion filter. Use when you need to operate on specific existing rows by their explicit row IDs obtained from a prior grid query (e.g., an update). The filter matches any row whose ID is in the provided list (logical OR semantics). Do not use for pattern matching or broad selection; supply only the exact row IDs you intend to modify or retrieve. * @export * @interface RowIdFilter */ export interface RowIdFilter { /** * Required. Must be a string matching one of: "org.sagebionetworks.repo.model.grid.query.RowValidationResultFilter", "org.sagebionetworks.repo.model.grid.query.RowSelectionFilter", "org.sagebionetworks.repo.model.grid.query.RowIsValidFilter", "org.sagebionetworks.repo.model.grid.query.CellValueFilter", "org.sagebionetworks.repo.model.grid.query.RowIdFilter" * @type {string} * @memberof RowIdFilter */ concreteType: RowIdFilterConcreteTypeEnum; /** * Array of explicit row IDs. The result will include any row whose ID appears in this list (logical OR). Provide only IDs previously obtained from a grid query. Omit this filter if you do not know the IDs. Do not include duplicates or IDs not present in the current grid. * @type {Array} * @memberof RowIdFilter */ rowIdsIn?: Array; } /** * @export */ export declare const RowIdFilterConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_query_RowIdFilter: "org.sagebionetworks.repo.model.grid.query.RowIdFilter"; }; export type RowIdFilterConcreteTypeEnum = typeof RowIdFilterConcreteTypeEnum[keyof typeof RowIdFilterConcreteTypeEnum]; /** * Check if a given object implements the RowIdFilter interface. */ export declare function instanceOfRowIdFilter(value: object): value is RowIdFilter; export declare function RowIdFilterFromJSON(json: any): RowIdFilter; export declare function RowIdFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): RowIdFilter; export declare function RowIdFilterToJSON(json: any): RowIdFilter; export declare function RowIdFilterToJSONTyped(value?: RowIdFilter | null, ignoreDiscriminator?: boolean): any;