import { MosaicId } from '../../model/mosaic/MosaicId'; import { AccountOrderBy } from './AccountOrderBy'; import { SearchCriteria } from './SearchCriteria'; /** * Defines the params used to search blocks. With this criteria, you can sort and filter * block queries using rest. */ export interface AccountSearchCriteria extends SearchCriteria { /** * Account order by enum. (optional) */ orderBy?: AccountOrderBy; /** * Account mosaic id. (optional) */ mosaicId?: MosaicId; }