Files
EdgeCommon/pkg/rpc/protos/models/model_plan.proto

18 lines
333 B
Protocol Buffer
Raw Normal View History

2021-10-29 14:02:49 +08:00
syntax = "proto3";
option go_package = "./pb";
package pb;
message Plan {
int64 id = 1;
bool isOn = 2;
string name = 3;
int64 clusterId = 4;
2021-11-09 17:36:34 +08:00
bytes trafficLimitJSON = 5;
2021-10-29 14:02:49 +08:00
bytes featuresJSON = 6;
string priceType = 7;
2021-11-09 17:36:34 +08:00
bytes trafficPriceJSON = 8;
2021-10-29 14:02:49 +08:00
float monthlyPrice = 9;
float seasonallyPrice = 10;
float yearlyPrice = 11;
}