import type { Company } from '../models/Company'; import type { Education } from '../models/Education'; import type { Experience } from '../models/Experience'; import type { Institution } from '../models/Institution'; import type { Program } from '../models/Program'; import type { CancelablePromise } from '../core/CancelablePromise'; export declare class CareerService { /** * API endpoint for managing user base locations * @returns any No response body * @throws ApiError */ static careerLocationOrgsUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * API endpoint for managing user base locations * @returns any No response body * @throws ApiError */ static careerLocationOrgsUsersCreate({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * API endpoint for managing user base locations * @returns any No response body * @throws ApiError */ static careerLocationOrgsUsersUpdate({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * Platform-wide location statistics (GET only) * @returns any No response body * @throws ApiError */ static careerLocationsOrgsRetrieve({ org, }: { org: string; }): CancelablePromise; /** * @returns Company * @throws ApiError */ static careerOrgsCompaniesUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Company * @throws ApiError */ static careerOrgsCompaniesUsersCreate({ org, username, requestBody, }: { org: string; username: string; requestBody: Company; }): CancelablePromise; /** * @returns Company * @throws ApiError */ static careerOrgsCompaniesUsersUpdate({ org, username, requestBody, }: { org: string; username: string; requestBody: Company; }): CancelablePromise; /** * @returns void * @throws ApiError */ static careerOrgsCompaniesUsersDestroy({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Education * @throws ApiError */ static careerOrgsEducationUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Education * @throws ApiError */ static careerOrgsEducationUsersCreate({ org, username, requestBody, }: { org: string; username: string; requestBody: Education; }): CancelablePromise; /** * @returns Education * @throws ApiError */ static careerOrgsEducationUsersUpdate({ org, username, requestBody, }: { org: string; username: string; requestBody: Education; }): CancelablePromise; /** * @returns void * @throws ApiError */ static careerOrgsEducationUsersDestroy({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Experience * @throws ApiError */ static careerOrgsExperienceUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Experience * @throws ApiError */ static careerOrgsExperienceUsersCreate({ org, username, requestBody, }: { org: string; username: string; requestBody: Experience; }): CancelablePromise; /** * @returns Experience * @throws ApiError */ static careerOrgsExperienceUsersUpdate({ org, username, requestBody, }: { org: string; username: string; requestBody: Experience; }): CancelablePromise; /** * @returns void * @throws ApiError */ static careerOrgsExperienceUsersDestroy({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Institution * @throws ApiError */ static careerOrgsInstitutionsUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Institution * @throws ApiError */ static careerOrgsInstitutionsUsersCreate({ org, username, requestBody, }: { org: string; username: string; requestBody: Institution; }): CancelablePromise; /** * @returns Institution * @throws ApiError */ static careerOrgsInstitutionsUsersUpdate({ org, username, requestBody, }: { org: string; username: string; requestBody: Institution; }): CancelablePromise; /** * @returns void * @throws ApiError */ static careerOrgsInstitutionsUsersDestroy({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Program * @throws ApiError */ static careerOrgsProgramsUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns Program * @throws ApiError */ static careerOrgsProgramsUsersCreate({ org, username, requestBody, }: { org: string; username: string; requestBody: Program; }): CancelablePromise; /** * @returns Program * @throws ApiError */ static careerOrgsProgramsUsersUpdate({ org, username, requestBody, }: { org: string; username: string; requestBody: Program; }): CancelablePromise; /** * @returns void * @throws ApiError */ static careerOrgsProgramsUsersDestroy({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns any No response body * @throws ApiError */ static careerResumeOrgsUsersRetrieve({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns any No response body * @throws ApiError */ static careerResumeOrgsUsersCreate({ org, username, }: { org: string; username: string; }): CancelablePromise; /** * @returns any No response body * @throws ApiError */ static careerResumeOrgsUsersUpdate({ org, username, }: { org: string; username: string; }): CancelablePromise; }