/** * 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 { LabelResource } from './LabelResource'; /** * * @export * @interface LabelResourceArrayResponse */ export interface LabelResourceArrayResponse { /** * * @type {Array} * @memberof LabelResourceArrayResponse */ data?: Array; } /** * Check if a given object implements the LabelResourceArrayResponse interface. */ export declare function instanceOfLabelResourceArrayResponse(value: object): value is LabelResourceArrayResponse; export declare function LabelResourceArrayResponseFromJSON(json: any): LabelResourceArrayResponse; export declare function LabelResourceArrayResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): LabelResourceArrayResponse; export declare function LabelResourceArrayResponseToJSON(json: any): LabelResourceArrayResponse; export declare function LabelResourceArrayResponseToJSONTyped(value?: LabelResourceArrayResponse | null, ignoreDiscriminator?: boolean): any;