UNPKG

@broadcom/endevor-bridge-for-git-rest-api

Version:

Endevor Bridge for Git Rest client

15 lines (14 loc) 421 B
import { IResponse } from "../IResponse"; import { EndevorConnection } from "../../common/model/connection/EndevorConnection"; export interface UserData extends IResponse { id: number; email: string; name: string; role: string; username: string; endevorCredentials?: EndevorConnection[]; readOnlyRole?: boolean; lastLogin?: string; readOnly?: boolean; roleChangeError?: boolean; }