/** * 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 { AttributeResource } from './AttributeResource'; import type { PagingMetadata } from './PagingMetadata'; /** * * @export * @interface PaginatedAttributeResourceResponse */ export interface PaginatedAttributeResourceResponse { /** * * @type {Array} * @memberof PaginatedAttributeResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedAttributeResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedAttributeResourceResponse interface. */ export declare function instanceOfPaginatedAttributeResourceResponse(value: object): value is PaginatedAttributeResourceResponse; export declare function PaginatedAttributeResourceResponseFromJSON(json: any): PaginatedAttributeResourceResponse; export declare function PaginatedAttributeResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAttributeResourceResponse; export declare function PaginatedAttributeResourceResponseToJSON(json: any): PaginatedAttributeResourceResponse; export declare function PaginatedAttributeResourceResponseToJSONTyped(value?: PaginatedAttributeResourceResponse | null, ignoreDiscriminator?: boolean): any;