/** * 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 { ModelAttributeListResource } from './ModelAttributeListResource'; /** * * @export * @interface PaginatedModelAttributeListResourceResponse */ export interface PaginatedModelAttributeListResourceResponse { /** * * @type {Array} * @memberof PaginatedModelAttributeListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedModelAttributeListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedModelAttributeListResourceResponse interface. */ export declare function instanceOfPaginatedModelAttributeListResourceResponse(value: object): value is PaginatedModelAttributeListResourceResponse; export declare function PaginatedModelAttributeListResourceResponseFromJSON(json: any): PaginatedModelAttributeListResourceResponse; export declare function PaginatedModelAttributeListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedModelAttributeListResourceResponse; export declare function PaginatedModelAttributeListResourceResponseToJSON(json: any): PaginatedModelAttributeListResourceResponse; export declare function PaginatedModelAttributeListResourceResponseToJSONTyped(value?: PaginatedModelAttributeListResourceResponse | null, ignoreDiscriminator?: boolean): any;