UNPKG

@apideck/node

Version:
70 lines (69 loc) 1.9 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. */ /** * * @export * @interface TimeOffRequestsFilter */ export interface TimeOffRequestsFilter { /** * Start date * @type {string} * @memberof TimeOffRequestsFilter */ start_date?: string; /** * End date * @type {string} * @memberof TimeOffRequestsFilter */ end_date?: string; /** * Minimum date the time off request was last created or modified * @type {string} * @memberof TimeOffRequestsFilter */ updated_since?: string; /** * Employee ID * @type {string} * @memberof TimeOffRequestsFilter */ employee_id?: string; /** * Time off request status to filter on * @type {string} * @memberof TimeOffRequestsFilter */ time_off_request_status?: TimeOffRequestsFilterTimeOffRequestStatus; /** * Company ID * @type {string} * @memberof TimeOffRequestsFilter */ company_id?: string; } /** * @export * @enum {string} */ export declare enum TimeOffRequestsFilterTimeOffRequestStatus { requested = "requested", approved = "approved", declined = "declined", cancelled = "cancelled", deleted = "deleted", other = "other" } export declare function TimeOffRequestsFilterFromJSON(json: any): TimeOffRequestsFilter; export declare function TimeOffRequestsFilterFromJSONTyped(json: any, ignoreDiscriminator: boolean): TimeOffRequestsFilter; export declare function TimeOffRequestsFilterToJSON(value?: TimeOffRequestsFilter | null): any;