UNPKG

@apideck/node

Version:
84 lines (83 loc) 2.09 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 { EmploymentStatus } from './EmploymentStatus'; import { HrisJobLocation } from './HrisJobLocation'; /** * * @export * @interface HrisJob */ export interface HrisJob { /** * A unique identifier for an object. * @type {string} * @memberof HrisJob */ readonly id?: string | null; /** * Id of the employee * @type {string} * @memberof HrisJob */ employee_id?: string | null; /** * The job title of the person. * @type {string} * @memberof HrisJob */ title?: string | null; /** * * @type {Date} * @memberof HrisJob */ start_date?: Date | null; /** * * @type {Date} * @memberof HrisJob */ end_date?: Date | null; /** * * @type {EmploymentStatus} * @memberof HrisJob */ employment_status?: EmploymentStatus | null; /** * Department name * @type {string} * @memberof HrisJob */ department?: string | null; /** * Indicates whether this the employee's primary job. * @type {boolean} * @memberof HrisJob */ is_primary?: boolean | null; /** * * @type {HrisJobLocation} * @memberof HrisJob */ location?: HrisJobLocation; /** * When custom mappings are configured on the resource, the result is included here. * @type {object} * @memberof HrisJob */ readonly custom_mappings?: object | null; } export declare function HrisJobFromJSON(json: any): HrisJob; export declare function HrisJobFromJSONTyped(json: any, ignoreDiscriminator: boolean): HrisJob; export declare function HrisJobToJSON(value?: HrisJob | null): any;