/**
 * Accounting API
 * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator)
 *
 * The version of the OpenAPI document: 2.0.0
 * Contact: api@xero.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 { ExternalLink } from './externalLink';
export declare class Employee {
    /**
    * The Xero identifier for an employee e.g. 297c2dc5-cc47-4afd-8ec8-74990b8761e9
    */
    'employeeID'?: string;
    /**
    * Current status of an employee – see contact status types
    */
    'status'?: Employee.StatusEnum;
    /**
    * First name of an employee (max length = 255)
    */
    'firstName'?: string;
    /**
    * Last name of an employee (max length = 255)
    */
    'lastName'?: string;
    'externalLink'?: ExternalLink;
    'updatedDateUTC'?: Date;
    static discriminator: string | undefined;
    static attributeTypeMap: Array<{
        name: string;
        baseName: string;
        type: string;
    }>;
    static getAttributeTypeMap(): {
        name: string;
        baseName: string;
        type: string;
    }[];
}
export declare namespace Employee {
    enum StatusEnum {
        ACTIVE,
        ARCHIVED,
        GDPRREQUEST
    }
}
