UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

31 lines (30 loc) 779 B
export declare enum JobLocationEnumDto { ONSITE = "ONSITE", REMOTE = "REMOTE", BOTH = "BOTH" } export declare enum TypeOfEmploymentEnumDto { FULLTIME = "FULLTIME", PARTTIME = "PARTTIME", BOTH = "BOTH" } export declare class AdminCreateJobInformationDto { jobRole: string; note?: string; skills: string[]; openings: number; location: JobLocationEnumDto; typeOfEmployment: TypeOfEmploymentEnumDto; onboardingTat: string; candidateCommunicationSkills: string; currency: string; expectedSalaryFrom: number; expectedSalaryTo: number; tentativeStartDate: string; tentativeEndDate: string; additionalComment?: string; countryId: number; stateId: number; cityId: number; clientId: number; }