/** * 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 { PagingMetadata } from './PagingMetadata'; import type { LabelListResource } from './LabelListResource'; /** * * @export * @interface PaginatedLabelListResourceResponse */ export interface PaginatedLabelListResourceResponse { /** * * @type {Array} * @memberof PaginatedLabelListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedLabelListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedLabelListResourceResponse interface. */ export declare function instanceOfPaginatedLabelListResourceResponse(value: object): value is PaginatedLabelListResourceResponse; export declare function PaginatedLabelListResourceResponseFromJSON(json: any): PaginatedLabelListResourceResponse; export declare function PaginatedLabelListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedLabelListResourceResponse; export declare function PaginatedLabelListResourceResponseToJSON(json: any): PaginatedLabelListResourceResponse; export declare function PaginatedLabelListResourceResponseToJSONTyped(value?: PaginatedLabelListResourceResponse | null, ignoreDiscriminator?: boolean): any;