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 SshKey { string id = 1; optional string fingerprint = 2; string name = 3; string public_key = 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; }