/** * 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 { ProductTypeResource } from './ProductTypeResource'; /** * * @export * @interface PaginatedProductTypeResourceResponse */ export interface PaginatedProductTypeResourceResponse { /** * * @type {Array} * @memberof PaginatedProductTypeResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedProductTypeResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedProductTypeResourceResponse interface. */ export declare function instanceOfPaginatedProductTypeResourceResponse(value: object): value is PaginatedProductTypeResourceResponse; export declare function PaginatedProductTypeResourceResponseFromJSON(json: any): PaginatedProductTypeResourceResponse; export declare function PaginatedProductTypeResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedProductTypeResourceResponse; export declare function PaginatedProductTypeResourceResponseToJSON(json: any): PaginatedProductTypeResourceResponse; export declare function PaginatedProductTypeResourceResponseToJSONTyped(value?: PaginatedProductTypeResourceResponse | null, ignoreDiscriminator?: boolean): any;