/** * 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 { ProductTypeLiteResource } from './ProductTypeLiteResource'; /** * * @export * @interface PaginatedProductTypeLiteResourceResponse */ export interface PaginatedProductTypeLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedProductTypeLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductTypeLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductTypeLiteResourceResponse interface. */ export declare function instanceOfPaginatedProductTypeLiteResourceResponse(value: object): value is PaginatedProductTypeLiteResourceResponse; export declare function PaginatedProductTypeLiteResourceResponseFromJSON(json: any): PaginatedProductTypeLiteResourceResponse; export declare function PaginatedProductTypeLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductTypeLiteResourceResponse; export declare function PaginatedProductTypeLiteResourceResponseToJSON(json: any): PaginatedProductTypeLiteResourceResponse; export declare function PaginatedProductTypeLiteResourceResponseToJSONTyped(value?: PaginatedProductTypeLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;