/** * 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 { AttributeListResource } from './AttributeListResource'; /** * * @export * @interface PaginatedAttributeListResourceResponse */ export interface PaginatedAttributeListResourceResponse { /** * * @type {Array} * @memberof PaginatedAttributeListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedAttributeListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedAttributeListResourceResponse interface. */ export declare function instanceOfPaginatedAttributeListResourceResponse(value: object): value is PaginatedAttributeListResourceResponse; export declare function PaginatedAttributeListResourceResponseFromJSON(json: any): PaginatedAttributeListResourceResponse; export declare function PaginatedAttributeListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAttributeListResourceResponse; export declare function PaginatedAttributeListResourceResponseToJSON(json: any): PaginatedAttributeListResourceResponse; export declare function PaginatedAttributeListResourceResponseToJSONTyped(value?: PaginatedAttributeListResourceResponse | null, ignoreDiscriminator?: boolean): any;