/** * metrics-sdk-admin * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: 5.4.9 * * * 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 { UserSorting } from './UserSorting'; /** * * @export * @interface UserListResponseMeta */ export interface UserListResponseMeta { /** * * @type {string} * @memberof UserListResponseMeta */ name?: string; /** * * @type {string} * @memberof UserListResponseMeta */ email?: string; /** * * @type {UserSorting} * @memberof UserListResponseMeta */ sort: UserSorting; /** * * @type {boolean} * @memberof UserListResponseMeta */ ascending?: boolean; /** * * @type {number} * @memberof UserListResponseMeta */ limit?: number; /** * * @type {number} * @memberof UserListResponseMeta */ offset?: number; /** * * @type {number} * @memberof UserListResponseMeta */ totalCount?: number; } /** * Check if a given object implements the UserListResponseMeta interface. */ export declare function instanceOfUserListResponseMeta(value: object): value is UserListResponseMeta; export declare function UserListResponseMetaFromJSON(json: any): UserListResponseMeta; export declare function UserListResponseMetaFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserListResponseMeta; export declare function UserListResponseMetaToJSON(value?: UserListResponseMeta | null): any;