/** * 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 { BaseFieldsCreate } from './BaseFieldsCreate'; import type { ParticipantField } from './ParticipantField'; import type { ShiftsInterval } from './ShiftsInterval'; /** * * @export * @interface CreateShiftsPayload */ export interface CreateShiftsPayload extends BaseFieldsCreate { /** * * @type {Array} * @memberof CreateShiftsPayload */ intervals: Array; /** * * @type {Array} * @memberof CreateShiftsPayload */ participants: Array; } /** * Check if a given object implements the CreateShiftsPayload interface. */ export declare function instanceOfCreateShiftsPayload(value: object): value is CreateShiftsPayload; export declare function CreateShiftsPayloadFromJSON(json: any): CreateShiftsPayload; export declare function CreateShiftsPayloadFromJSONTyped(json: any, ignoreDiscriminator: boolean): CreateShiftsPayload; export declare function CreateShiftsPayloadToJSON(value?: CreateShiftsPayload | null): any;