/** * 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 { AttributeListResource } from './AttributeListResource'; /** * * @export * @interface AttributeListResourceArrayResponse */ export interface AttributeListResourceArrayResponse { /** * * @type {Array} * @memberof AttributeListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the AttributeListResourceArrayResponse interface. */ export declare function instanceOfAttributeListResourceArrayResponse(value: object): value is AttributeListResourceArrayResponse; export declare function AttributeListResourceArrayResponseFromJSON(json: any): AttributeListResourceArrayResponse; export declare function AttributeListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeListResourceArrayResponse; export declare function AttributeListResourceArrayResponseToJSON(json: any): AttributeListResourceArrayResponse; export declare function AttributeListResourceArrayResponseToJSONTyped(value?: AttributeListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;