/** * 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 { UserData } from './UserData'; import type { UserListResponseMeta } from './UserListResponseMeta'; /** * * @export * @interface UserListResponse */ export interface UserListResponse { /** * * @type {Array} * @memberof UserListResponse */ users: Array; /** * * @type {UserListResponseMeta} * @memberof UserListResponse */ usersMeta: UserListResponseMeta; /** * * @type {string} * @memberof UserListResponse */ accessToken?: string; /** * * @type {string} * @memberof UserListResponse */ refreshToken?: string; } /** * Check if a given object implements the UserListResponse interface. */ export declare function instanceOfUserListResponse(value: object): value is UserListResponse; export declare function UserListResponseFromJSON(json: any): UserListResponse; export declare function UserListResponseFromJSONTyped(json: any, ignoreDiscriminator: boolean): UserListResponse; export declare function UserListResponseToJSON(value?: UserListResponse | null): any;