/** * 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. */ /** * Use this filter for simple requests to find all 'valid' or 'invalid' rows based on their overall validation status. * @export * @interface RowIsValidFilter */ export interface RowIsValidFilter { /** * 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 RowIsValidFilter */ concreteType: RowIsValidFilterConcreteTypeEnum; /** * Set to 'true' to find rows that are valid according to the schema. Set to 'false' to find rows that are invalid and have validation errors.' * @type {boolean} * @memberof RowIsValidFilter */ value?: boolean; } /** * @export */ export declare const RowIsValidFilterConcreteTypeEnum: { readonly org_sagebionetworks_repo_model_grid_query_RowIsValidFilter: "org.sagebionetworks.repo.model.grid.query.RowIsValidFilter"; }; export type RowIsValidFilterConcreteTypeEnum = typeof RowIsValidFilterConcreteTypeEnum[keyof typeof RowIsValidFilterConcreteTypeEnum]; /** * Check if a given object implements the RowIsValidFilter interface. */ export declare function instanceOfRowIsValidFilter(value: object): value is RowIsValidFilter; export declare function RowIsValidFilterFromJSON(json: any): RowIsValidFilter; export declare function RowIsValidFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): RowIsValidFilter; export declare function RowIsValidFilterToJSON(json: any): RowIsValidFilter; export declare function RowIsValidFilterToJSONTyped(value?: RowIsValidFilter | null, ignoreDiscriminator?: boolean): any;