GetUserResult
type GetUserResult = {  createdAt: string;  email?: string;  phone?: string;  profiles: Array<Profile>;  userId: string;  walletAddress: string;};
type createdAt = string;
type email = string;
type phone = string;
type profiles = Array<Profile>;
type userId = string;
type walletAddress = string;