/** * 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 { ProductRegistrationListResource } from './ProductRegistrationListResource'; /** * * @export * @interface ProductRegistrationListResourceArrayResponse */ export interface ProductRegistrationListResourceArrayResponse { /** * * @type {Array} * @memberof ProductRegistrationListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ProductRegistrationListResourceArrayResponse interface. */ export declare function instanceOfProductRegistrationListResourceArrayResponse(value: object): value is ProductRegistrationListResourceArrayResponse; export declare function ProductRegistrationListResourceArrayResponseFromJSON(json: any): ProductRegistrationListResourceArrayResponse; export declare function ProductRegistrationListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ProductRegistrationListResourceArrayResponse; export declare function ProductRegistrationListResourceArrayResponseToJSON(json: any): ProductRegistrationListResourceArrayResponse; export declare function ProductRegistrationListResourceArrayResponseToJSONTyped(value?: ProductRegistrationListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;