UNPKG

@slmdevs/celeraone

Version:

This is a NPM Package to use for all the CeleraOne interactions.

17 lines (16 loc) 397 B
import MasterDataInterface from '../API/Internal/MasterDataInterface'; /** * Inteface for the user search response * * @interface SearchUserResponse */ export default interface SearchUserResponse { count: number; users: { user_id: string; login_alias: string; login: string; contractor_ids: string[]; masterdata: MasterDataInterface; }[]; }