/** * 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 { AttributeValueResource } from './AttributeValueResource'; import type { PagingMetadata } from './PagingMetadata'; /** * * @export * @interface PaginatedAttributeValueResourceResponse */ export interface PaginatedAttributeValueResourceResponse { /** * * @type {Array} * @memberof PaginatedAttributeValueResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedAttributeValueResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedAttributeValueResourceResponse interface. */ export declare function instanceOfPaginatedAttributeValueResourceResponse(value: object): value is PaginatedAttributeValueResourceResponse; export declare function PaginatedAttributeValueResourceResponseFromJSON(json: any): PaginatedAttributeValueResourceResponse; export declare function PaginatedAttributeValueResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAttributeValueResourceResponse; export declare function PaginatedAttributeValueResourceResponseToJSON(json: any): PaginatedAttributeValueResourceResponse; export declare function PaginatedAttributeValueResourceResponseToJSONTyped(value?: PaginatedAttributeValueResourceResponse | null, ignoreDiscriminator?: boolean): any;