/**
 * 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 ApplicantWebsites
 */
export interface ApplicantWebsites {
    /**
     * The website URL
     * @type {string}
     * @memberof ApplicantWebsites
     */
    url: string;
    /**
     * Unique identifier for the website
     * @type {string}
     * @memberof ApplicantWebsites
     */
    id?: string | null;
    /**
     * The type of website
     * @type {string}
     * @memberof ApplicantWebsites
     */
    type?: ApplicantWebsitesType;
}
/**
 * @export
 * @enum {string}
 */
export declare enum ApplicantWebsitesType {
    primary = "primary",
    secondary = "secondary",
    work = "work",
    personal = "personal",
    other = "other"
}
export declare function ApplicantWebsitesFromJSON(json: any): ApplicantWebsites;
export declare function ApplicantWebsitesFromJSONTyped(json: any, ignoreDiscriminator: boolean): ApplicantWebsites;
export declare function ApplicantWebsitesToJSON(value?: ApplicantWebsites | null): any;
