export interface UserJson { accountId: string; displayName: string; } export default class User { private readonly data; constructor(data: UserJson); getAccountId(): string; getDisplayName(): string; }