/** * 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 { SupplierListResource } from './SupplierListResource'; /** * * @export * @interface SupplierListResourceArrayResponse */ export interface SupplierListResourceArrayResponse { /** * * @type {Array} * @memberof SupplierListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the SupplierListResourceArrayResponse interface. */ export declare function instanceOfSupplierListResourceArrayResponse(value: object): value is SupplierListResourceArrayResponse; export declare function SupplierListResourceArrayResponseFromJSON(json: any): SupplierListResourceArrayResponse; export declare function SupplierListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): SupplierListResourceArrayResponse; export declare function SupplierListResourceArrayResponseToJSON(json: any): SupplierListResourceArrayResponse; export declare function SupplierListResourceArrayResponseToJSONTyped(value?: SupplierListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;