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 LinkedAccount { message Identity { optional string email = 1; bool email_verified = 2; optional string preferred_username = 3; optional string user_id = 4; optional string user_name = 5; } string id = 1; optional Identity identity = 2; string identity_provider = 3; optional string user_id = 4; google.protobuf.Timestamp created_at = 5; string created_by_user_id = 6; optional google.protobuf.Timestamp deleted_at = 7; optional string deleted_by_user_id = 8; optional google.protobuf.Timestamp updated_at = 9; optional string updated_by_user_id = 10; }