projects/netgrif-components-core/src/lib/search/models/persistance/filter-metadata-allowed-nets.ts
The bare minimum of information necessary for the reconstruction of a saved filter
Properties |
allowedNets |
allowedNets:
|
Type : Array<string>
|
Allowed nets used to create the filter |
filterMetadata |
filterMetadata:
|
Type : FilterMetadata
|
Serialized advanced search state of the saved filter |
import {FilterMetadata} from './filter-metadata';
/**
* The bare minimum of information necessary for the reconstruction of a saved filter
*/
export interface FilterMetadataAllowedNets {
/**
* Allowed nets used to create the filter
*/
allowedNets: Array<string>;
/**
* Serialized advanced search state of the saved filter
*/
filterMetadata: FilterMetadata;
}