@apideck/node
Version:
Apideck Node.js SDK
52 lines (51 loc) • 1.43 kB
TypeScript
/**
* 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 EmployeeList
*/
export interface EmployeeList {
/**
* A unique identifier for an object.
* @type {string}
* @memberof EmployeeList
*/
readonly id?: string;
/**
* The first name of the person.
* @type {string}
* @memberof EmployeeList
*/
first_name?: string | null;
/**
* The last name of the person.
* @type {string}
* @memberof EmployeeList
*/
last_name?: string | null;
/**
* The date and time when the object was last updated.
* @type {Date}
* @memberof EmployeeList
*/
readonly updated_at?: Date | null;
/**
* The date and time when the object was created.
* @type {Date}
* @memberof EmployeeList
*/
readonly created_at?: Date | null;
}
export declare function EmployeeListFromJSON(json: any): EmployeeList;
export declare function EmployeeListFromJSONTyped(json: any, ignoreDiscriminator: boolean): EmployeeList;
export declare function EmployeeListToJSON(value?: EmployeeList | null): any;