/** * 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 { AttributeLiteResource } from './AttributeLiteResource'; import type { PagingMetadata } from './PagingMetadata'; /** * * @export * @interface PaginatedAttributeLiteResourceResponse */ export interface PaginatedAttributeLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedAttributeLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedAttributeLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedAttributeLiteResourceResponse interface. */ export declare function instanceOfPaginatedAttributeLiteResourceResponse(value: object): value is PaginatedAttributeLiteResourceResponse; export declare function PaginatedAttributeLiteResourceResponseFromJSON(json: any): PaginatedAttributeLiteResourceResponse; export declare function PaginatedAttributeLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAttributeLiteResourceResponse; export declare function PaginatedAttributeLiteResourceResponseToJSON(json: any): PaginatedAttributeLiteResourceResponse; export declare function PaginatedAttributeLiteResourceResponseToJSONTyped(value?: PaginatedAttributeLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;