/**
 * Apideck
 * The Apideck OpenAPI Spec: SDK Optimized
 *
 * The version of the OpenAPI document: 10.13.0
 * Contact: support@apideck.com
 *
 * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
 * https://openapi-generator.tech
 * Do not edit the class manually.
 */
/**
 *
 * @export
 * @interface ApplicationStage
 */
export interface ApplicationStage {
    /**
     * Stage the candidate should be in. If omitted, the default stage for this job will be used.
     * @type {string}
     * @memberof ApplicationStage
     */
    id?: string | null;
    /**
     *
     * @type {string}
     * @memberof ApplicationStage
     */
    name?: string | null;
}
export declare function ApplicationStageFromJSON(json: any): ApplicationStage;
export declare function ApplicationStageFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicationStage;
export declare function ApplicationStageToJSON(value?: ApplicationStage | null): any;
