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 ApiKey { string id = 1; string private_key = 2; optional string description = 3; google.protobuf.Timestamp created_at = 4; string created_by_user_id = 5; optional google.protobuf.Timestamp deleted_at = 6; optional string deleted_by_user_id = 7; optional google.protobuf.Timestamp updated_at = 8; optional string updated_by_user_id = 9; }