This commit is contained in:
Daniel Appelgren
2021-11-19 10:27:51 +01:00
parent 9bb6bc55d5
commit d42001f36a
2 changed files with 56 additions and 10 deletions
@@ -1,7 +1,17 @@
export interface SignalRequest {
genomforandeReferens: number;
typ: 'arbete' | 'utbildning';
omfattning: 'heltid' | 'deltid';
omfattning_procent: number;
startdatum: string;
export enum SignalRequestType {
Work = 'work',
Education = 'education',
}
export enum SignalRequestOmfattning {
Heltid = 'heltid',
Deltid = 'deltid',
}
export interface SignalRequest {
genomforandereferens: number;
type: SignalRequestType;
omfattning: SignalRequestOmfattning;
omfattningPercent: number;
startDate: string;
}