/** * 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 { DefinitionListResource } from './DefinitionListResource'; /** * * @export * @interface DefinitionListResourceArrayResponse */ export interface DefinitionListResourceArrayResponse { /** * * @type {Array} * @memberof DefinitionListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the DefinitionListResourceArrayResponse interface. */ export declare function instanceOfDefinitionListResourceArrayResponse(value: object): value is DefinitionListResourceArrayResponse; export declare function DefinitionListResourceArrayResponseFromJSON(json: any): DefinitionListResourceArrayResponse; export declare function DefinitionListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): DefinitionListResourceArrayResponse; export declare function DefinitionListResourceArrayResponseToJSON(json: any): DefinitionListResourceArrayResponse; export declare function DefinitionListResourceArrayResponseToJSONTyped(value?: DefinitionListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;