export interface UserProfileProperty { readonly id: number; readonly type: string; readonly label: string; readonly value: string; readonly isDefault: boolean; } export interface UserProfile { readonly userId: string; readonly username: string; readonly firstName: string; readonly familyName: string; readonly properties: UserProfileProperty[]; }