UNPKG

@apideck/node

Version:
77 lines (76 loc) 1.87 kB
/** * 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 { Gender } from './Gender'; /** * * @export * @interface Person */ export interface Person { /** * A unique identifier for an object. * @type {string} * @memberof Person */ readonly id?: string | null; /** * The first name of the person. * @type {string} * @memberof Person */ first_name?: string | null; /** * The last name of the person. * @type {string} * @memberof Person */ last_name?: string | null; /** * Middle name of the person. * @type {string} * @memberof Person */ middle_name?: string | null; /** * * @type {Gender} * @memberof Person */ gender?: Gender | null; /** * Initials of the person * @type {string} * @memberof Person */ initials?: string | null; /** * Date of birth * @type {Date} * @memberof Person */ birthday?: Date | null; /** * Date of death * @type {Date} * @memberof Person */ deceased_on?: Date | null; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof Person */ readonly custom_mappings?: object | null; } export declare function PersonFromJSON(json: any): Person; export declare function PersonFromJSONTyped(json: any, ignoreDiscriminator: boolean): Person; export declare function PersonToJSON(value?: Person | null): any;