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 Role { string id = 1; string name = 2; string display_name = 3; google.protobuf.Timestamp created_at = 4; string created_by_user_id = 5; optional google.protobuf.Timestamp deleted_at = 6; optional google.protobuf.Timestamp updated_at = 7; optional string updated_by_user_id = 8; }