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 Plan { string id = 1; optional string description = 2; string display_name = 3; bool free = 4; optional string metadata_json = 5; string name = 6; optional string private_metadata_json = 7; string service_id = 8; bool visible = 9; google.protobuf.Timestamp created_at = 10; string created_by_user_id = 11; optional google.protobuf.Timestamp deleted_at = 12; optional google.protobuf.Timestamp updated_at = 13; optional string updated_by_user_id = 14; }