/** * My API * API documentation for my Laravel app * * 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. */ /** * * @export * @interface StoreSpecialDateResource */ export interface StoreSpecialDateResource { /** * * @type {number} * @memberof StoreSpecialDateResource */ id?: number | null; /** * * @type {string} * @memberof StoreSpecialDateResource */ name: string; /** * * @type {string} * @memberof StoreSpecialDateResource */ hours: string; /** * * @type {object} * @memberof StoreSpecialDateResource */ date: object; /** * * @type {boolean} * @memberof StoreSpecialDateResource */ closed: boolean; /** * * @type {string} * @memberof StoreSpecialDateResource */ displayStartDate: string; /** * * @type {string} * @memberof StoreSpecialDateResource */ displayEndDate: string; } /** * Check if a given object implements the StoreSpecialDateResource interface. */ export declare function instanceOfStoreSpecialDateResource(value: object): value is StoreSpecialDateResource; export declare function StoreSpecialDateResourceFromJSON(json: any): StoreSpecialDateResource; export declare function StoreSpecialDateResourceFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreSpecialDateResource; export declare function StoreSpecialDateResourceToJSON(json: any): StoreSpecialDateResource; export declare function StoreSpecialDateResourceToJSONTyped(value?: StoreSpecialDateResource | null, ignoreDiscriminator?: boolean): any;