/** * EAS API * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 1.0.0 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ import type { ParticipantField } from './ParticipantField'; import type { ShiftsInterval } from './ShiftsInterval'; /** * * @export * @interface ShiftsFields */ export interface ShiftsFields { /** * * @type {Array} * @memberof ShiftsFields */ intervals: Array; /** * * @type {Array} * @memberof ShiftsFields */ participants: Array; } /** * Check if a given object implements the ShiftsFields interface. */ export declare function instanceOfShiftsFields(value: object): value is ShiftsFields; export declare function ShiftsFieldsFromJSON(json: any): ShiftsFields; export declare function ShiftsFieldsFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShiftsFields; export declare function ShiftsFieldsToJSON(value?: ShiftsFields | null): any;