/** * 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 { ModelAttributeResource } from './ModelAttributeResource'; /** * * @export * @interface ModelAttributeResourceArrayResponse */ export interface ModelAttributeResourceArrayResponse { /** * * @type {Array} * @memberof ModelAttributeResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the ModelAttributeResourceArrayResponse interface. */ export declare function instanceOfModelAttributeResourceArrayResponse(value: object): value is ModelAttributeResourceArrayResponse; export declare function ModelAttributeResourceArrayResponseFromJSON(json: any): ModelAttributeResourceArrayResponse; export declare function ModelAttributeResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): ModelAttributeResourceArrayResponse; export declare function ModelAttributeResourceArrayResponseToJSON(json: any): ModelAttributeResourceArrayResponse; export declare function ModelAttributeResourceArrayResponseToJSONTyped(value?: ModelAttributeResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;