/** * 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. */ import type { StoreLocationResource } from './StoreLocationResource'; /** * * @export * @interface StoreLocationResourceArrayResponse */ export interface StoreLocationResourceArrayResponse { /** * * @type {Array} * @memberof StoreLocationResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the StoreLocationResourceArrayResponse interface. */ export declare function instanceOfStoreLocationResourceArrayResponse(value: object): value is StoreLocationResourceArrayResponse; export declare function StoreLocationResourceArrayResponseFromJSON(json: any): StoreLocationResourceArrayResponse; export declare function StoreLocationResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): StoreLocationResourceArrayResponse; export declare function StoreLocationResourceArrayResponseToJSON(json: any): StoreLocationResourceArrayResponse; export declare function StoreLocationResourceArrayResponseToJSONTyped(value?: StoreLocationResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;