UNPKG

@experts_hub/shared

Version:

Shared DTOs, interfaces, and utilities for experts hub applications

33 lines (32 loc) 812 B
export declare enum JobLocation { ONSITE = "ONSITE", REMOTE = "REMOTE", BOTH = "BOTH" } export declare enum EmploymentType { FULLTIME = "FULLTIME", PARTTIME = "PARTTIME", BOTH = "BOTH" } export declare class JobBasicInformationDto { isDraft?: boolean; jobRole: string; note?: string; skills: string[]; openings: number; location: JobLocation; countryId: number; stateId: number; cityId: number; typeOfEmployment: EmploymentType; currency?: string; expectedSalaryFrom: number; expectedSalaryTo: number; tentativeStartDate: string; tentativeEndDate: string; onboardingTat?: string; candidateCommunicationSkills?: string; academicQualification?: string; yearsOfExperience?: string; businessIndustry?: string; }