/** * Linkbreakers API * This is a documentation of all the APIs of Linkbreakers * * The version of the OpenAPI document: 1.118.3 * * * 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 DayOfWeekOption */ export interface DayOfWeekOption { /** * Days of the week: 0=Sunday, 1=Monday, 2=Tuesday, 3=Wednesday, 4=Thursday, 5=Friday, 6=Saturday * @type {Array} * @memberof DayOfWeekOption */ daysOfWeek?: Array; /** * * @type {string} * @memberof DayOfWeekOption */ id?: string; /** * * @type {string} * @memberof DayOfWeekOption */ name?: string; /** * * @type {string} * @memberof DayOfWeekOption */ nextStepId?: string; } /** * Check if a given object implements the DayOfWeekOption interface. */ export declare function instanceOfDayOfWeekOption(value: object): value is DayOfWeekOption; export declare function DayOfWeekOptionFromJSON(json: any): DayOfWeekOption; export declare function DayOfWeekOptionFromJSONTyped(json: any, ignoreDiscriminator: boolean): DayOfWeekOption; export declare function DayOfWeekOptionToJSON(json: any): DayOfWeekOption; export declare function DayOfWeekOptionToJSONTyped(value?: DayOfWeekOption | null, ignoreDiscriminator?: boolean): any;