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;
    }[];
}
