import { APIResource } from "../core/resource.mjs"; import * as BusinessPartnersAPI from "./business-partners.mjs"; import { APIPromise } from "../core/api-promise.mjs"; import { PageCursorURL, PagePromise } from "../core/pagination.mjs"; import { RequestOptions } from "../internal/request-options.mjs"; /** * Organizational classifications used to categorize hiring needs based on business urgency and strategic importance */ export declare class HeadcountPriorities extends APIResource { /** * A list of headcount priorities. * * - Requires: `API Tier 2` * - Sortable fields: `id`, `created_at`, `updated_at` */ list(query?: HeadcountPriorityListParams | null | undefined, options?: RequestOptions): PagePromise; /** * Retrieve a specific headcount priority */ retrieve(id: string, options?: RequestOptions): APIPromise; } export type HeadcountPriorityListResponsesPageCursorURL = PageCursorURL; export interface HeadcountPriorityListResponse { /** * Identifier field */ id: string; /** * Record creation date */ created_at: string; /** * Record update date */ updated_at: string; /** * Display name of the headcount priority */ name?: string; } /** * Meta information for the response. */ export interface HeadcountPriorityRetrieveResponse extends BusinessPartnersAPI.Meta { /** * Identifier field */ id: string; /** * Record creation date */ created_at: string; /** * Record update date */ updated_at: string; /** * Display name of the headcount priority */ name?: string; } export interface HeadcountPriorityListParams { cursor?: string; order_by?: string; } export declare namespace HeadcountPriorities { export { type HeadcountPriorityListResponse as HeadcountPriorityListResponse, type HeadcountPriorityRetrieveResponse as HeadcountPriorityRetrieveResponse, type HeadcountPriorityListResponsesPageCursorURL as HeadcountPriorityListResponsesPageCursorURL, type HeadcountPriorityListParams as HeadcountPriorityListParams, }; } //# sourceMappingURL=headcount-priorities.d.mts.map