syntax = "proto3"; package onprem.user.v1; option go_package="gitlab.com/on-prem-net/protocol/onprem/user/v1;userproto"; import "google/protobuf/timestamp.proto"; message Account { string id = 1; optional string email = 2; bool email_confirmed = 3; optional string first = 4; optional string last = 5; repeated string linked_account_ids = 6; reserved 7, 8; repeated string role_ids = 9; repeated string service_instance_ids = 10; repeated string team_ids = 11; google.protobuf.Timestamp created_at = 12; optional google.protobuf.Timestamp deleted_at = 13; optional google.protobuf.Timestamp updated_at = 14; repeated string group_ids = 15; string username = 16; }