From b62310504833087c3f0e253466ee547ac5105aee Mon Sep 17 00:00:00 2001 From: Matt Fellows <53900+mefellows@users.noreply.github.com> Date: Mon, 27 Nov 2023 14:12:22 +1100 Subject: [PATCH] fix: remove firstname/lastname as they never existed in the API --- broker/user.go | 2 -- 1 file changed, 2 deletions(-) diff --git a/broker/user.go b/broker/user.go index 70b18832..ba02aa60 100644 --- a/broker/user.go +++ b/broker/user.go @@ -15,8 +15,6 @@ const ( type User struct { UUID string `json:"uuid,omitempty"` Name string `json:"name,omitempty"` - FirstName string `json:"first_name,omitempty"` - LastName string `json:"last_name,omitempty"` Email string `json:"email,omitempty"` Active bool `json:"active"` CreatedAt string `json:"createdAt,omitempty"`