From cf4685ce4abeb7f7de32d94eec0d5e1e77783e93 Mon Sep 17 00:00:00 2001 From: Spencer Ofwiti Date: Sun, 14 Mar 2021 11:20:48 +0300 Subject: [PATCH] Add additional account properties. --- src/app/_models/account.ts | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/app/_models/account.ts b/src/app/_models/account.ts index feacdf4..20b3404 100644 --- a/src/app/_models/account.ts +++ b/src/app/_models/account.ts @@ -1,6 +1,8 @@ export interface AccountDetails { date_registered: number; gender: string; + age?: string; + type?: string; identities: { evm: { 'bloxberg:8996': string[]; @@ -10,9 +12,12 @@ export interface AccountDetails { longitude: number; }; location: { + area?: string; area_name: string; + area_type?: string; }; products: string[]; + category?: string; vcard: { email: [{ value: string;