/** * 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 { AttributeResource } from './AttributeResource'; /** * * @export * @interface AttributeResourceArrayResponse */ export interface AttributeResourceArrayResponse { /** * * @type {Array} * @memberof AttributeResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the AttributeResourceArrayResponse interface. */ export declare function instanceOfAttributeResourceArrayResponse(value: object): value is AttributeResourceArrayResponse; export declare function AttributeResourceArrayResponseFromJSON(json: any): AttributeResourceArrayResponse; export declare function AttributeResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AttributeResourceArrayResponse; export declare function AttributeResourceArrayResponseToJSON(json: any): AttributeResourceArrayResponse; export declare function AttributeResourceArrayResponseToJSONTyped(value?: AttributeResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;