UNPKG

@apideck/node

Version:
47 lines (46 loc) 1.26 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 { ScheduleWorkPattern } from './ScheduleWorkPattern'; /** * * @export * @interface Schedule */ export interface Schedule { /** * A unique identifier for an object. * @type {string} * @memberof Schedule */ readonly id: string; /** * The start date, inclusive, of the schedule period. * @type {string} * @memberof Schedule */ start_date: string; /** * The end date, inclusive, of the schedule period. * @type {string} * @memberof Schedule */ end_date: string; /** * * @type {ScheduleWorkPattern} * @memberof Schedule */ work_pattern: ScheduleWorkPattern; } export declare function ScheduleFromJSON(json: any): Schedule; export declare function ScheduleFromJSONTyped(json: any, ignoreDiscriminator: boolean): Schedule; export declare function ScheduleToJSON(value?: Schedule | null): any;