/**
 * 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.
 */
import { ApplicationStage } from './ApplicationStage';
import { PassThroughBody } from './PassThroughBody';
/**
 *
 * @export
 * @interface Application
 */
export interface Application {
    /**
     *
     * @type {string}
     * @memberof Application
     */
    applicant_id: string | null;
    /**
     *
     * @type {string}
     * @memberof Application
     */
    job_id: string | null;
    /**
     * A unique identifier for an object.
     * @type {string}
     * @memberof Application
     */
    readonly id?: string;
    /**
     *
     * @type {string}
     * @memberof Application
     */
    status?: ApplicationStatus;
    /**
     *
     * @type {ApplicationStage}
     * @memberof Application
     */
    stage?: ApplicationStage;
    /**
     * When custom mappings are configured on the resource, the result is included here.
     * @type {object}
     * @memberof Application
     */
    readonly custom_mappings?: object | null;
    /**
     * The user who last updated the object.
     * @type {string}
     * @memberof Application
     */
    readonly updated_by?: string | null;
    /**
     * The user who created the object.
     * @type {string}
     * @memberof Application
     */
    readonly created_by?: string | null;
    /**
     * The date and time when the object was last updated.
     * @type {Date}
     * @memberof Application
     */
    readonly updated_at?: Date | null;
    /**
     * The date and time when the object was created.
     * @type {Date}
     * @memberof Application
     */
    readonly created_at?: Date | null;
    /**
     *
     * @type {PassThroughBody}
     * @memberof Application
     */
    pass_through?: PassThroughBody;
}
/**
 * @export
 * @enum {string}
 */
export declare enum ApplicationStatus {
    open = "open",
    rejected = "rejected",
    hired = "hired",
    converted = "converted",
    other = "other"
}
export declare function ApplicationFromJSON(json: any): Application;
export declare function ApplicationFromJSONTyped(json: any, ignoreDiscriminator: boolean): Application;
export declare function ApplicationToJSON(value?: Application | null): any;
