@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
32 lines (31 loc) • 768 B
TypeScript
declare enum JobLocationEnums {
ONSITE = "ONSITE",
REMOTE = "REMOTE",
BOTH = "BOTH"
}
declare enum TypeOfEmploymentEnums {
FULLTIME = "FULLTIME",
PARTTIME = "PARTTIME",
BOTH = "BOTH"
}
export declare class AdminUpdateJobInformationDto {
jobRole: string;
note?: string;
skills: string[];
openings: number;
location: JobLocationEnums;
typeOfEmployment: TypeOfEmploymentEnums;
onboardingTat: string;
candidateCommunicationSkills: string;
currency: string;
expectedSalaryFrom: number;
expectedSalaryTo: number;
tentativeStartDate: string;
tentativeEndDate: string;
additionalComment?: string;
countryId: number;
stateId: number;
cityId: number;
clientId: number;
}
export {};