/** * 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 { MenuListResource } from './MenuListResource'; /** * * @export * @interface PaginatedMenuListResourceResponse */ export interface PaginatedMenuListResourceResponse { /** * * @type {Array} * @memberof PaginatedMenuListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedMenuListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedMenuListResourceResponse interface. */ export declare function instanceOfPaginatedMenuListResourceResponse(value: object): value is PaginatedMenuListResourceResponse; export declare function PaginatedMenuListResourceResponseFromJSON(json: any): PaginatedMenuListResourceResponse; export declare function PaginatedMenuListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedMenuListResourceResponse; export declare function PaginatedMenuListResourceResponseToJSON(json: any): PaginatedMenuListResourceResponse; export declare function PaginatedMenuListResourceResponseToJSONTyped(value?: PaginatedMenuListResourceResponse | null, ignoreDiscriminator?: boolean): any;