@experts_hub/shared
Version:
Shared DTOs, interfaces, and utilities for experts hub applications
31 lines (30 loc) • 771 B
TypeScript
export declare enum JobLocationEnums {
ONSITE = "ONSITE",
REMOTE = "REMOTE",
BOTH = "BOTH"
}
export 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;
}