/** * 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 { ProductTypeResource } from './ProductTypeResource'; /** * * @export * @interface ProductTypeResourceArrayResponse */ export interface ProductTypeResourceArrayResponse { /** * * @type {Array} * @memberof ProductTypeResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductTypeResourceArrayResponse interface. */ export declare function instanceOfProductTypeResourceArrayResponse(value: object): value is ProductTypeResourceArrayResponse; export declare function ProductTypeResourceArrayResponseFromJSON(json: any): ProductTypeResourceArrayResponse; export declare function ProductTypeResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductTypeResourceArrayResponse; export declare function ProductTypeResourceArrayResponseToJSON(json: any): ProductTypeResourceArrayResponse; export declare function ProductTypeResourceArrayResponseToJSONTyped(value?: ProductTypeResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;