UNPKG

@apideck/node

Version:
34 lines (33 loc) 960 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. */ /** * * @export * @interface TimeOffRequestNotes */ export interface TimeOffRequestNotes { /** * * @type {string} * @memberof TimeOffRequestNotes */ employee?: string | null; /** * * @type {string} * @memberof TimeOffRequestNotes */ manager?: string | null; } export declare function TimeOffRequestNotesFromJSON(json: any): TimeOffRequestNotes; export declare function TimeOffRequestNotesFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeOffRequestNotes; export declare function TimeOffRequestNotesToJSON(value?: TimeOffRequestNotes | null): any;