UNPKG

@apideck/node

Version:
36 lines (35 loc) 938 B
/** * 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 { Employee } from './Employee'; import { HrisJob } from './HrisJob'; /** * * @export * @interface HrisJobs */ export interface HrisJobs { /** * * @type {Employee} * @memberof HrisJobs */ employee?: Employee; /** * * @type {Array<HrisJob>} * @memberof HrisJobs */ jobs?: Array<HrisJob> | null; } export declare function HrisJobsFromJSON(json: any): HrisJobs; export declare function HrisJobsFromJSONTyped(json: any, ignoreDiscriminator: boolean): HrisJobs; export declare function HrisJobsToJSON(value?: HrisJobs | null): any;