/** * 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 { BaseResult } from './BaseResult'; import type { ShiftsResultAllOfValue } from './ShiftsResultAllOfValue'; /** * * @export * @interface ShiftsResult */ export interface ShiftsResult extends BaseResult { /** * * @type {Array} * @memberof ShiftsResult */ value?: Array | null; } /** * Check if a given object implements the ShiftsResult interface. */ export declare function instanceOfShiftsResult(value: object): value is ShiftsResult; export declare function ShiftsResultFromJSON(json: any): ShiftsResult; export declare function ShiftsResultFromJSONTyped(json: any, ignoreDiscriminator: boolean): ShiftsResult; export declare function ShiftsResultToJSON(value?: Omit | null): any;