/** * 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 { TagLiteResource } from './TagLiteResource'; /** * * @export * @interface PaginatedTagLiteResourceResponse */ export interface PaginatedTagLiteResourceResponse { /** * * @type {Array} * @memberof PaginatedTagLiteResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedTagLiteResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedTagLiteResourceResponse interface. */ export declare function instanceOfPaginatedTagLiteResourceResponse(value: object): value is PaginatedTagLiteResourceResponse; export declare function PaginatedTagLiteResourceResponseFromJSON(json: any): PaginatedTagLiteResourceResponse; export declare function PaginatedTagLiteResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedTagLiteResourceResponse; export declare function PaginatedTagLiteResourceResponseToJSON(json: any): PaginatedTagLiteResourceResponse; export declare function PaginatedTagLiteResourceResponseToJSONTyped(value?: PaginatedTagLiteResourceResponse | null, ignoreDiscriminator?: boolean): any;