MobX Lark
    Preparing search index...

    Interface Resume

    interface Resume {
        awards: ResumeAward[];
        careers: ResumeCareer[];
        certificates: ResumeCertificate[];
        competitions: ResumeCertificate[];
        content: string;
        country_code: string;
        current_location: string;
        date_of_birth: string;
        educations: ResumeEducation[];
        email: string;
        file_md5: string;
        gender: Gender;
        home_location: string;
        languages: ResumeLanguage[];
        mobile: string;
        mobile_is_virtual: boolean;
        name: string;
        new_content: string;
        projects: ResumeProject[];
        self_evaluation: string;
        social_links: string[];
        urls: string[];
        willing_locations: string[];
        willing_positions: string[];
        work_year: number | null;
    }

    Hierarchy

    • Record<
          | "file_md5"
          | `${""
          | "new_"}content`
          | "name"
          | "email"
          | "mobile"
          | "country_code"
          | "date_of_birth"
          | `${"current" | "home"}_location`
          | "self_evaluation",
          string,
      >
    • Record<
          `willing_${"positions" | "locations"}`
          | "urls"
          | "social_links",
          string[],
      >
      • Resume
    Index

    Properties

    awards: ResumeAward[]
    careers: ResumeCareer[]
    certificates: ResumeCertificate[]
    competitions: ResumeCertificate[]
    content: string
    country_code: string
    current_location: string
    date_of_birth: string
    educations: ResumeEducation[]
    email: string
    file_md5: string
    gender: Gender
    home_location: string
    languages: ResumeLanguage[]
    mobile: string
    mobile_is_virtual: boolean
    name: string
    new_content: string
    projects: ResumeProject[]
    self_evaluation: string
    social_links: string[]
    urls: string[]
    willing_locations: string[]
    willing_positions: string[]
    work_year: number | null