/** * 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 { PagingMetadata } from './PagingMetadata'; import type { StoreListResource } from './StoreListResource'; /** * * @export * @interface PaginatedStoreListResourceResponse */ export interface PaginatedStoreListResourceResponse { /** * * @type {Array} * @memberof PaginatedStoreListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedStoreListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedStoreListResourceResponse interface. */ export declare function instanceOfPaginatedStoreListResourceResponse(value: object): value is PaginatedStoreListResourceResponse; export declare function PaginatedStoreListResourceResponseFromJSON(json: any): PaginatedStoreListResourceResponse; export declare function PaginatedStoreListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedStoreListResourceResponse; export declare function PaginatedStoreListResourceResponseToJSON(json: any): PaginatedStoreListResourceResponse; export declare function PaginatedStoreListResourceResponseToJSONTyped(value?: PaginatedStoreListResourceResponse | null, ignoreDiscriminator?: boolean): any;