import { IApiBaseEntity } from '../../../../api-base-entity.interface';
import { TApiAuthorizationScopeWhere } from '../../../../../type/class/api/authorization/scope-where.type';
import { TApiControllerGeneratedScopeFunctionType } from '../../../../../type/class/api/controller/generated/scope-function-type.type';
export interface IApiControllerGeneratedReadScopeEntry {
    functionType: TApiControllerGeneratedScopeFunctionType;
    input: object;
    isClaimed: boolean;
    isWriteHydration: boolean;
    where: TApiAuthorizationScopeWhere<IApiBaseEntity>;
}
