package structs // swagger:model UsersResponse type UsersResponse struct { RoleId string Users []AllUsers Roles []UserRoleShortInfo } type UserRoleShortInfo struct { Id string Master bool DisplayName string SortingOrder int }