/**
 * The response object after an user has been imported into CeleraOne
 *
 * @interface ImportUserResponse
 */
export default interface ImportUserResponse {
    status: string;
    data: {
        user_id: string;
    };
}
