/** * 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 { CustomerListResource } from './CustomerListResource'; /** * * @export * @interface CustomerListResourceArrayResponse */ export interface CustomerListResourceArrayResponse { /** * * @type {Array} * @memberof CustomerListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the CustomerListResourceArrayResponse interface. */ export declare function instanceOfCustomerListResourceArrayResponse(value: object): value is CustomerListResourceArrayResponse; export declare function CustomerListResourceArrayResponseFromJSON(json: any): CustomerListResourceArrayResponse; export declare function CustomerListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): CustomerListResourceArrayResponse; export declare function CustomerListResourceArrayResponseToJSON(json: any): CustomerListResourceArrayResponse; export declare function CustomerListResourceArrayResponseToJSONTyped(value?: CustomerListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;