/** * 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 { AdminListResource } from './AdminListResource'; /** * * @export * @interface AdminListResourceArrayResponse */ export interface AdminListResourceArrayResponse { /** * * @type {Array} * @memberof AdminListResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the AdminListResourceArrayResponse interface. */ export declare function instanceOfAdminListResourceArrayResponse(value: object): value is AdminListResourceArrayResponse; export declare function AdminListResourceArrayResponseFromJSON(json: any): AdminListResourceArrayResponse; export declare function AdminListResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): AdminListResourceArrayResponse; export declare function AdminListResourceArrayResponseToJSON(json: any): AdminListResourceArrayResponse; export declare function AdminListResourceArrayResponseToJSONTyped(value?: AdminListResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;