/** * 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 { RoleListResource } from './RoleListResource'; /** * * @export * @interface PaginatedRoleListResourceResponse */ export interface PaginatedRoleListResourceResponse { /** * * @type {Array} * @memberof PaginatedRoleListResourceResponse */ data: Array; /** * * @type {PagingMetadata} * @memberof PaginatedRoleListResourceResponse */ meta: PagingMetadata; } /** * Check if a given object implements the PaginatedRoleListResourceResponse interface. */ export declare function instanceOfPaginatedRoleListResourceResponse(value: object): value is PaginatedRoleListResourceResponse; export declare function PaginatedRoleListResourceResponseFromJSON(json: any): PaginatedRoleListResourceResponse; export declare function PaginatedRoleListResourceResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): PaginatedRoleListResourceResponse; export declare function PaginatedRoleListResourceResponseToJSON(json: any): PaginatedRoleListResourceResponse; export declare function PaginatedRoleListResourceResponseToJSONTyped(value?: PaginatedRoleListResourceResponse | null, ignoreDiscriminator?: boolean): any;