/** * 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 { AdminListResource } from './AdminListResource'; /** * * @export * @interface PaginatedAdminListResourceResponse */ export interface PaginatedAdminListResourceResponse { /** * * @type {Array} * @memberof PaginatedAdminListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedAdminListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedAdminListResourceResponse interface. */ export declare function instanceOfPaginatedAdminListResourceResponse(value: object): value is PaginatedAdminListResourceResponse; export declare function PaginatedAdminListResourceResponseFromJSON(json: any): PaginatedAdminListResourceResponse; export declare function PaginatedAdminListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedAdminListResourceResponse; export declare function PaginatedAdminListResourceResponseToJSON(json: any): PaginatedAdminListResourceResponse; export declare function PaginatedAdminListResourceResponseToJSONTyped(value?: PaginatedAdminListResourceResponse | null, ignoreDiscriminator?: boolean): any;