@@ -26,14 +26,15 @@ type CreatePlanRequest struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" `
ClusterId int64 ` protobuf:"varint,2 ,opt,name=clusterId ,proto3" json:"clusterId ,omitempty" `
TrafficLimitJSON [ ] byte ` protobuf:"bytes,3 ,opt,name=trafficLimitJSON,proto3" json:"trafficLimitJSON,omitempty" `
Name string ` protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty" ` // 套餐名称
Description string ` protobuf:"bytes,19 ,opt,name=description ,proto3" json:"description ,omitempty" ` // 套餐简介
ClusterId int64 ` protobuf:"varint,2 ,opt,name=clusterId,proto3" json:"clusterId,omitempty" ` // 集群ID
TrafficLimitJSON [ ] byte ` protobuf:"bytes,3,opt,name=trafficLimitJSON,proto3" json:"trafficLimitJSON,omitempty" ` // 流量限制
HasFullFeatures bool ` protobuf:"varint,18,opt,name=hasFullFeatures,proto3" json:"hasFullFeatures,omitempty" ` // 是否有所有权限
FeaturesJSON [ ] byte ` protobuf:"bytes,4,opt,name=featuresJSON,proto3" json:"featuresJSON,omitempty" ` // 权限列表,[code1, code2, ...]
PriceType string ` protobuf:"bytes,5,opt,name=priceType,proto3" json:"priceType,omitempty" `
TrafficPriceJSON [ ] byte ` protobuf:"bytes,6,opt,name=trafficPriceJSON,proto3" json:"trafficPriceJSON,omitempty" `
BandwidthPriceJSON [ ] byte ` protobuf:"bytes,10,opt,name=bandwidthPriceJSON,proto3" json:"bandwidthPriceJSON,omitempty" `
PriceType string ` protobuf:"bytes,5,opt,name=priceType,proto3" json:"priceType,omitempty" ` // 价格类型: traffic, bandwidth, period
TrafficPriceJSON [ ] byte ` protobuf:"bytes,6,opt,name=trafficPriceJSON,proto3" json:"trafficPriceJSON,omitempty" ` // 流量价格配置
BandwidthPriceJSON [ ] byte ` protobuf:"bytes,10,opt,name=bandwidthPriceJSON,proto3" json:"bandwidthPriceJSON,omitempty" ` // 带宽价格配置
MonthlyPrice float32 ` protobuf:"fixed32,7,opt,name=monthlyPrice,proto3" json:"monthlyPrice,omitempty" ` // 月度价格
SeasonallyPrice float32 ` protobuf:"fixed32,8,opt,name=seasonallyPrice,proto3" json:"seasonallyPrice,omitempty" ` // 季度价格
YearlyPrice float32 ` protobuf:"fixed32,9,opt,name=yearlyPrice,proto3" json:"yearlyPrice,omitempty" ` // 年度价格
@@ -85,6 +86,13 @@ func (x *CreatePlanRequest) GetName() string {
return ""
}
func ( x * CreatePlanRequest ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * CreatePlanRequest ) GetClusterId ( ) int64 {
if x != nil {
return x . ClusterId
@@ -257,19 +265,20 @@ type UpdatePlanRequest struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
PlanId int64 ` protobuf:"varint,1,opt,name=planId,proto3" json:"planId,omitempty" `
Name string ` protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty" `
IsO n bool ` protobuf:"varint,3 ,opt,name=isO n,proto3" json:"isO n,omitempty" `
ClusterId int64 ` protobuf:"varint,4 ,opt,name=clusterId ,proto3" json:"clusterId ,omitempty" `
TrafficLimitJSON [ ] byte ` protobuf:"bytes,5 ,opt,name=trafficLimitJSON,proto3" json:"trafficLimitJSON,omitempty" `
PlanId int64 ` protobuf:"varint,1,opt,name=planId,proto3" json:"planId,omitempty" ` // 套餐ID
Name string ` protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty" ` // 套餐名称
Descriptio n string ` protobuf:"bytes,21 ,opt,name=descriptio n,proto3" json:"descriptio n,omitempty" ` // 套餐简介
IsOn bool ` protobuf:"varint,3 ,opt,name=isOn ,proto3" json:"isOn ,omitempty" ` // 是否启用
ClusterId int64 ` protobuf:"varint,4 ,opt,name=clusterId,proto3" json:"clusterId,omitempty" ` // 集群ID
TrafficLimitJSON [ ] byte ` protobuf:"bytes,5,opt,name=trafficLimitJSON,proto3" json:"trafficLimitJSON,omitempty" ` // 流量限制
HasFullFeatures bool ` protobuf:"varint,20,opt,name=hasFullFeatures,proto3" json:"hasFullFeatures,omitempty" ` // 是否有所有权限
FeaturesJSON [ ] byte ` protobuf:"bytes,6,opt,name=featuresJSON,proto3" json:"featuresJSON,omitempty" ` // 权限列表,[code1, code2, ...]
PriceType string ` protobuf:"bytes,7,opt,name=priceType,proto3" json:"priceType,omitempty" `
TrafficPriceJSON [ ] byte ` protobuf:"bytes,8,opt,name=trafficPriceJSON,proto3" json:"trafficPriceJSON,omitempty" `
BandwidthPriceJSON [ ] byte ` protobuf:"bytes,12,opt,name=bandwidthPriceJSON,proto3" json:"bandwidthPriceJSON,omitempty" `
MonthlyPrice float32 ` protobuf:"fixed32,9,opt,name=monthlyPrice,proto3" json:"monthlyPrice,omitempty" `
SeasonallyPrice float32 ` protobuf:"fixed32,10,opt,name=seasonallyPrice,proto3" json:"seasonallyPrice,omitempty" `
YearlyPrice float32 ` protobuf:"fixed32,11,opt,name=yearlyPrice,proto3" json:"yearlyPrice,omitempty" `
PriceType string ` protobuf:"bytes,7,opt,name=priceType,proto3" json:"priceType,omitempty" ` // 价格类型: traffic, bandwidth, period
TrafficPriceJSON [ ] byte ` protobuf:"bytes,8,opt,name=trafficPriceJSON,proto3" json:"trafficPriceJSON,omitempty" ` // 流量价格配置
BandwidthPriceJSON [ ] byte ` protobuf:"bytes,12,opt,name=bandwidthPriceJSON,proto3" json:"bandwidthPriceJSON,omitempty" ` // 带宽价格配置
MonthlyPrice float32 ` protobuf:"fixed32,9,opt,name=monthlyPrice,proto3" json:"monthlyPrice,omitempty" ` // 月费用
SeasonallyPrice float32 ` protobuf:"fixed32,10,opt,name=seasonallyPrice,proto3" json:"seasonallyPrice,omitempty" ` // 季度费用
YearlyPrice float32 ` protobuf:"fixed32,11,opt,name=yearlyPrice,proto3" json:"yearlyPrice,omitempty" ` // 年度费用
TotalServers int32 ` protobuf:"varint,13,opt,name=totalServers,proto3" json:"totalServers,omitempty" ` // 可以添加的网站数
TotalServerNamesPerServer int32 ` protobuf:"varint,14,opt,name=totalServerNamesPerServer,proto3" json:"totalServerNamesPerServer,omitempty" ` // 每个网站可以添加的域名数
TotalServerNames int32 ` protobuf:"varint,15,opt,name=totalServerNames,proto3" json:"totalServerNames,omitempty" ` // 可以添加的域名总数
@@ -325,6 +334,13 @@ func (x *UpdatePlanRequest) GetName() string {
return ""
}
func ( x * UpdatePlanRequest ) GetDescription ( ) string {
if x != nil {
return x . Description
}
return ""
}
func ( x * UpdatePlanRequest ) GetIsOn ( ) bool {
if x != nil {
return x . IsOn
@@ -457,7 +473,7 @@ type DeletePlanRequest struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
PlanId int64 ` protobuf:"varint,1,opt,name=planId,proto3" json:"planId,omitempty" `
PlanId int64 ` protobuf:"varint,1,opt,name=planId,proto3" json:"planId,omitempty" ` // 套餐ID
}
func ( x * DeletePlanRequest ) Reset ( ) {
@@ -505,7 +521,7 @@ type FindEnabledPlanRequest struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
PlanId int64 ` protobuf:"varint,1,opt,name=planId,proto3" json:"planId,omitempty" `
PlanId int64 ` protobuf:"varint,1,opt,name=planId,proto3" json:"planId,omitempty" ` // 套餐ID
}
func ( x * FindEnabledPlanRequest ) Reset ( ) {
@@ -552,7 +568,7 @@ type FindEnabledPlanResponse struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Plan * Plan ` protobuf:"bytes,1,opt,name=plan,proto3" json:"plan,omitempty" `
Plan * Plan ` protobuf:"bytes,1,opt,name=plan,proto3" json:"plan,omitempty" ` // 套餐信息
}
func ( x * FindEnabledPlanResponse ) Reset ( ) {
@@ -694,7 +710,7 @@ type ListEnabledPlansResponse struct {
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Plans [ ] * Plan ` protobuf:"bytes,1,rep,name=plans,proto3" json:"plans,omitempty" `
Plans [ ] * Plan ` protobuf:"bytes,1,rep,name=plans,proto3" json:"plans,omitempty" ` // 套餐列表
}
func ( x * ListEnabledPlansResponse ) Reset ( ) {
@@ -736,19 +752,105 @@ func (x *ListEnabledPlansResponse) GetPlans() []*Plan {
return nil
}
// 列出所有可用的套餐
type FindAllAvailablePlansRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
}
func ( x * FindAllAvailablePlansRequest ) Reset ( ) {
* x = FindAllAvailablePlansRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_service_plan_proto_msgTypes [ 9 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * FindAllAvailablePlansRequest ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * FindAllAvailablePlansRequest ) ProtoMessage ( ) { }
func ( x * FindAllAvailablePlansRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_plan_proto_msgTypes [ 9 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use FindAllAvailablePlansRequest.ProtoReflect.Descriptor instead.
func ( * FindAllAvailablePlansRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 9 }
}
type FindAllAvailablePlansResponse struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
Plans [ ] * Plan ` protobuf:"bytes,1,rep,name=plans,proto3" json:"plans,omitempty" ` // 套餐列表
}
func ( x * FindAllAvailablePlansResponse ) Reset ( ) {
* x = FindAllAvailablePlansResponse { }
if protoimpl . UnsafeEnabled {
mi := & file_service_plan_proto_msgTypes [ 10 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
}
func ( x * FindAllAvailablePlansResponse ) String ( ) string {
return protoimpl . X . MessageStringOf ( x )
}
func ( * FindAllAvailablePlansResponse ) ProtoMessage ( ) { }
func ( x * FindAllAvailablePlansResponse ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_plan_proto_msgTypes [ 10 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
ms . StoreMessageInfo ( mi )
}
return ms
}
return mi . MessageOf ( x )
}
// Deprecated: Use FindAllAvailablePlansResponse.ProtoReflect.Descriptor instead.
func ( * FindAllAvailablePlansResponse ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 10 }
}
func ( x * FindAllAvailablePlansResponse ) GetPlans ( ) [ ] * Plan {
if x != nil {
return x . Plans
}
return nil
}
// 对套餐进行排序
type SortPlansRequest struct {
state protoimpl . MessageState
sizeCache protoimpl . SizeCache
unknownFields protoimpl . UnknownFields
PlanIds [ ] int64 ` protobuf:"varint,1,rep,packed,name=planIds,proto3" json:"planIds,omitempty" `
PlanIds [ ] int64 ` protobuf:"varint,1,rep,packed,name=planIds,proto3" json:"planIds,omitempty" ` // 排序后的套餐ID列表
}
func ( x * SortPlansRequest ) Reset ( ) {
* x = SortPlansRequest { }
if protoimpl . UnsafeEnabled {
mi := & file_service_plan_proto_msgTypes [ 9 ]
mi := & file_service_plan_proto_msgTypes [ 11 ]
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
ms . StoreMessageInfo ( mi )
}
@@ -761,7 +863,7 @@ func (x *SortPlansRequest) String() string {
func ( * SortPlansRequest ) ProtoMessage ( ) { }
func ( x * SortPlansRequest ) ProtoReflect ( ) protoreflect . Message {
mi := & file_service_plan_proto_msgTypes [ 9 ]
mi := & file_service_plan_proto_msgTypes [ 11 ]
if protoimpl . UnsafeEnabled && x != nil {
ms := protoimpl . X . MessageStateOf ( protoimpl . Pointer ( x ) )
if ms . LoadMessageInfo ( ) == nil {
@@ -774,7 +876,7 @@ func (x *SortPlansRequest) ProtoReflect() protoreflect.Message {
// Deprecated: Use SortPlansRequest.ProtoReflect.Descriptor instead.
func ( * SortPlansRequest ) Descriptor ( ) ( [ ] byte , [ ] int ) {
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 9 }
return file_service_plan_proto_rawDescGZIP ( ) , [ ] int { 11 }
}
func ( x * SortPlansRequest ) GetPlanIds ( ) [ ] int64 {
@@ -791,163 +893,179 @@ var file_service_plan_proto_rawDesc = []byte{
0x72 , 0x6f , 0x74 , 0x6f , 0x12 , 0x02 , 0x70 , 0x62 , 0x1a , 0x17 , 0x6d , 0x6f , 0x64 , 0x65 , 0x6c , 0x73 ,
0x2f , 0x6d , 0x6f , 0x64 , 0x65 , 0x6c , 0x5f , 0x70 , 0x6c , 0x61 , 0x6e , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 ,
0x6f , 0x1a , 0x19 , 0x6d , 0x6f , 0x64 , 0x65 , 0x6c , 0x73 , 0x2f , 0x72 , 0x70 , 0x63 , 0x5f , 0x6d , 0x65 ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x73 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0x87 , 0x06 , 0x0a ,
0x73 , 0x73 , 0x61 , 0x67 , 0x65 , 0x73 , 0x2e , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x22 , 0xa9 , 0x06 , 0x0a ,
0x11 , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 ,
0x73 , 0x74 , 0x12 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x1c , 0x0a , 0x09 , 0x63 , 0x6c , 0x7 5 , 0x73 , 0x74 , 0x65 ,
0x72 , 0x49 , 0x64 , 0x18 , 0x02 , 0x20 , 0x0 1 , 0x28 , 0x03 , 0x5 2 , 0x09 , 0x63 , 0x6c , 0x75 , 0x73 , 0x74 ,
0x65 , 0x72 , 0x4 9 , 0x64 , 0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c ,
0x69 , 0x6d , 0x69 , 0x7 4 , 0x4a , 0x53 , 0x4f , 0x4e , 0x1 8 , 0x03 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 ,
0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69, 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 , 0x6c , 0x6c , 0x46 , 0x65 , 0x6 1 , 0x74 , 0x75 ,
0x7 2 , 0x65 , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x7 5 ,
0x6c , 0x6c , 0x46 , 0x65 , 0x61, 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x12 , 0x22 , 0x0a , 0x0c , 0x66 , 0x65 ,
0x61 , 0x74, 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x1 8 , 0x04 , 0x20 , 0x01 , 0x2 8 , 0x0c ,
0x52 , 0x0c , 0x6 6 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x1 c ,
0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x18 , 0x05 , 0x2 0 , 0x01 , 0x28 ,
0x09 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x12 , 0x2a , 0x0a , 0x10 ,
0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 , 0x72 , 0x6 9 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x18 , 0x06 , 0x2 0 , 0x01 , 0x28 , 0x0c , 0x5 2 , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 ,
0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53, 0x4f , 0x4e , 0x12 , 0x2e , 0x0a , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 ,
0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x0a ,
0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 , 0x6e , 0x6 4 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 ,
0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e, 0x12 , 0x22 , 0x0a , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 ,
0x6 8 , 0x6c , 0x79 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0c ,
0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x28 , 0x0a , 0x0 f ,
0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e, 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 ,
0x08 , 0x2 0 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c ,
0x79 , 0x50 , 0x72 , 0x69 , 0x63, 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x79 , 0x65 , 0x61 , 0x72 , 0x6c , 0x79 ,
0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x1 8 , 0x09 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0b , 0x79 , 0x65 , 0x61 ,
0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x22 , 0x0a , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 ,
0x6c , 0x53 , 0x6 5 , 0x72 , 0x7 6 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0c ,
0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x7 6 , 0x65 , 0x7 2 , 0x73 , 0x12 , 0x3 c , 0x0a , 0x19 ,
0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x6 3 , 0x72 , 0x69 ,
0x70 , 0x7 4 , 0x69 , 0x6f , 0x6e , 0x18 , 0x13 , 0x20 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 , 0x65 , 0x73 ,
0x63 , 0x72 , 0x6 9 , 0x70 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1c , 0x0a , 0x09 , 0x63 , 0x6c , 0x75 , 0x73 ,
0x74 , 0x65 , 0x72 , 0x49 , 0x6 4 , 0x18 , 0x02 , 0x20 , 0x01 , 0x2 8 , 0x03 , 0x5 2 , 0x09 , 0x63 , 0x6c , 0x75 ,
0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x12 , 0x2a , 0x0a , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 ,
0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x03 , 0x20 , 0x0 1 , 0x28 , 0x0c ,
0x5 2 , 0x10 , 0x74 , 0x72 , 0x6 1 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 , 0x 6c , 0x6c , 0x46 , 0x65 , 0x61 ,
0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x2 8 , 0x08 , 0x5 2 , 0x0f , 0x6 8 , 0x61 , 0x73 ,
0x46 , 0x75 , 0x6c , 0x6c , 0x4 6 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x12 , 0x22 , 0x0a , 0x0 c ,
0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x04 , 0x2 0 , 0x01 ,
0x28 , 0x0c , 0x52 , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x7 5 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x12 , 0x1c , 0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x6 5 , 0x54 , 0x7 9 , 0x70 , 0x65 , 0x18 , 0x0 5 , 0x20 ,
0x0 1 , 0x28 , 0x09 , 0x52 , 0x09 , 0x7 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x12 , 0x2a ,
0x0a , 0x10 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x50 , 0x 72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x18 , 0x06 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 ,
0x63 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x2e , 0x0a , 0x12 , 0x62 , 0x61 ,
0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x50 , 0x 72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x1 8 , 0x0a , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 ,
0x68 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x22 , 0x0a , 0x0c , 0x6d , 0x6 f ,
0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x07 , 0x20 , 0x01 , 0x28 , 0x02 ,
0x52 , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x28 ,
0x0a , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c , 0x 79 , 0x50 , 0x72 , 0x69 , 0x63 ,
0x6 5 , 0x18 , 0x08 , 0x20 , 0x01 , 0x2 8 , 0x02 , 0x5 2 , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 ,
0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x79 , 0x65 , 0x61 , 0x72 ,
0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x09 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0b , 0x79 ,
0x65 , 0x61 , 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x1 2 , 0x22 , 0x0a , 0x0 c , 0x74 , 0x6f ,
0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x05 ,
0x52 , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 , 0x12 , 0x3c ,
0x0a , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d ,
0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 ,
0x05 , 0x52 , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 ,
0x6d , 0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x12 , 0x2a , 0x0a , 0x10 ,
0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 ,
0x50 , 0x65 , 0x7 2 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x0 5 , 0x5 2 ,
0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x 76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 ,
0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x12 , 0x2a , 0x0a , 0x10 , 0x74 , 0x6f ,
0x7 4 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0d ,
0x2 0 , 0x01 , 0x28 , 0x05 , 0x52 , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x6 5 , 0x72 , 0x76 , 0x65 ,
0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x12 , 0x24 , 0x0a , 0x0 d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x0e , 0x2 0 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0d , 0x64 ,
0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x7 4 , 0x73 , 0x12 , 0x28 , 0x0a , 0x0f ,
0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x5 2 , 0x65 , 0x71 , 0x75 , 0x6 5 , 0x73 , 0x7 4 , 0x73 , 0x18 ,
0x0f , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x57 ,
0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 ,
0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 ,
0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x57 ,
0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 ,
0x6f , 0x6e , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 ,
0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x6 5 , 0x7 2 ,
0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65, 0x73 , 0x12 , 0x24 , 0x0a , 0x0d , 0x64 , 0x61 , 0x69 , 0x6c ,
0x79 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x0d , 0x6 4 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x28 ,
0x0a , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 ,
0x73 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x03 , 0x5 2 , 0x0f , 0x6 d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 ,
0x52 , 0x65, 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c ,
0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x19 , 0x6 4 , 0x61 , 0x69 ,
0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 ,
0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x2 2 , 0x2c , 0x0a , 0x12 , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 ,
0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x7 3 , 0x70 , 0x6f , 0x6e , 0x7 3 , 0x65 , 0x12 , 0x1 6 , 0x0a , 0x0 6 ,
0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x1 2 , 0x40 , 0x0a , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c ,
0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x6 3 , 0x6b , 0x65 , 0x74 , 0x4 3 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 ,
0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x1b , 0x6d , 0x6f , 0x6e ,
0x74 , 0x68 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e ,
0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x2c , 0x0a , 0x12 , 0x43 , 0x72 , 0x65 , 0x61 ,
0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x16 ,
0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x06 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0xd5 , 0x06 , 0x0a , 0x11 , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 ,
0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x06 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x06 , 0x70 , 0x6c ,
0x61 , 0x6e , 0x49 , 0x64 , 0x2 2 , 0xb3 , 0x06 , 0x0a , 0x11 , 0x55 , 0x70 , 0x64 , 0x6 1 , 0x74 , 0x65 , 0x5 0 ,
0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x7 1 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x0 6 , 0x70 , 0x6c ,
0x61 , 0x6e , 0x49 , 0x6 4 , 0x18 , 0x01 , 0x20 , 0x0 1 , 0x28 , 0x03 , 0x52 , 0x06 , 0x7 0 , 0x6c , 0x61 , 0x6e ,
0x49 , 0x64 , 0x12 , 0x1 2 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x0 2 , 0x2 0 , 0x01 , 0x28 , 0x09 ,
0x52 , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x1 2 , 0x12 , 0x0a , 0x04 , 0x69 , 0x73 , 0x4f , 0x6e , 0x18 , 0x03 ,
0x2 0 , 0x01 , 0x28 , 0x08 , 0x52 , 0x04 , 0x69 , 0x73 , 0x4f , 0x6e , 0x12 , 0x1c , 0x0a , 0x09 , 0x63 , 0x6c ,
0x75 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x18 , 0x04 , 0x20 , 0x01 , 0x28 , 0x03 , 0x5 2 , 0x09 , 0x63 ,
0x6c , 0x75 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x6 4 , 0x12 , 0x2a , 0x0a , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 ,
0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x05 , 0x20 , 0x01 ,
0x28 , 0x0c , 0x52 , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x7 4 ,
0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 , 0x6c , 0x6c , 0x46 ,
0x65 , 0x61 , 0x74 , 0x75 , 0x72, 0x65 , 0x73 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x0f , 0x68 ,
0x61 , 0x73 , 0x46 , 0x75 , 0x6c , 0x6 c , 0x4 6 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x12 , 0x22 ,
0x0a , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x6 5 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x06 ,
0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x0c , 0x66 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x7 3 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x12 , 0x1c , 0x0a , 0x09 , 0x7 0 , 0x7 2 , 0x6 9 , 0x63 , 0x65 , 0x54 , 0x79 , 0x70 , 0x65 , 0x18 ,
0x07 , 0x20 , 0x01 , 0x28 , 0x09 , 0x5 2 , 0x09 , 0x7 0 , 0x72 , 0x69 , 0x63 , 0x65 , 0x54 , 0x7 9 , 0x70 , 0x6 5 ,
0x1 2 , 0x2a , 0x0a , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 ,
0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 ,
0x66 , 0x69 , 0x63 , 0x50 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x2e , 0x0a , 0x12 ,
0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x64 , 0x74 , 0x68 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x18 , 0x0c , 0x20 , 0x01 , 0x2 8 , 0x0c , 0x5 2 , 0x12 , 0x62 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 ,
0x64 , 0x74 , 0x68 , 0x5 0 , 0x72 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x1 2 , 0x22 , 0x0a , 0x0c ,
0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50, 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x09 , 0x20 , 0x01 ,
0x28 , 0x02 , 0x52 , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 ,
0x12 , 0x28 , 0x0a , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x6 1 , 0x6c , 0x6c , 0x79 , 0x5 0 , 0x72 ,
0x69 , 0x63 , 0x65 , 0x18 , 0x0a , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0f , 0x7 3 , 0x65 , 0x61 , 0x73 , 0x6f ,
0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x79 , 0x65 ,
0x61 , 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x0b , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 ,
0x0b , 0x79 , 0x65 , 0x61 , 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x12 , 0x22 , 0x0a , 0x0c ,
0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72, 0x76 , 0x65 , 0x72 , 0x73 , 0x18 , 0x0d , 0x20 , 0x01 ,
0x28 , 0x0 5 , 0x5 2 , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 ,
0x12 , 0x3c , 0x0a , 0x19 , 0x7 4 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x4e ,
0x61 , 0x6d , 0x65 , 0x73 , 0x5 0 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x7 6 , 0x65 , 0x72 , 0x18 , 0x0e , 0x20 ,
0x01 , 0x28 , 0x05 , 0x52 , 0x19 , 0x7 4 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 ,
0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x5 0 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x12 , 0x2a ,
0x0a , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x6 5 , 0x7 2 , 0x4e , 0x61 , 0x6d ,
0x65 , 0x73 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x0 5 , 0x5 2 , 0x10 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 ,
0x65 , 0x72 , 0x7 6 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x12 , 0x24 , 0x0a , 0x0d , 0x64 , 0x6 1 ,
0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75, 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x10 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x0d , 0x64 , 0x6 1 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 ,
0x12 , 0x28 , 0x0a , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x5 2 , 0x65 , 0x71 , 0x75 , 0x65 ,
0x73 , 0x74 , 0x73 , 0x1 8 , 0x11 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 ,
0x6c , 0x7 9 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x64 , 0x61 ,
0x69 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e ,
0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x19 , 0x64 ,
0x61 , 0x69 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e ,
0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 ,
0x68 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x4 3 , 0x6f , 0x6e , 0x6e ,
0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x1 8 , 0x13 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x1b , 0x6d ,
0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 , 0x43 ,
0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x2b , 0x0a , 0x11 , 0x44 , 0x6 5 ,
0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1 2 ,
0x16 , 0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x2 0 , 0x01 , 0x28 , 0x03 , 0x52 ,
0x0 6 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0x30 , 0x0a , 0x16 , 0x4 6 , 0x69 , 0x6e , 0x64 , 0x4 5 ,
0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 ,
0x74 , 0x1 2 , 0x16 , 0x0a , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x0 6 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0x37 , 0x0a , 0x17 , 0x4 6 , 0x69 , 0x6e ,
0x64 , 0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6 c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x1 2 , 0x1c , 0x0a , 0x04 , 0x70 , 0x6c , 0x61 , 0x6 e , 0x18 , 0x01 , 0x20 , 0x01 ,
0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x6 2 , 0x2e , 0x5 0 , 0x6c , 0x61 , 0x6e , 0x52 , 0x04 , 0x70 , 0x6c ,
0x61 , 0x6e , 0x22 , 0x1d , 0x0a , 0x1b , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 , 0x4 1 , 0x6c , 0x6c , 0x4 5 , 0x6e ,
0x6 1 , 0x62 , 0x6c , 0x65 , 0x6 4 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 ,
0x74 , 0x22 , 0x4 5 , 0x0a , 0x17 , 0x4 c , 0x69 , 0x73 , 0x74 , 0x4 5 , 0x6e , 0x6 1 , 0x62 , 0x6c , 0x65 , 0x6 4 ,
0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x1 2 , 0x16 , 0x0a , 0x06 ,
0x6f , 0x66 , 0x66 , 0x73 , 0x65 , 0x74, 0x18 , 0x01 , 0x20 , 0x0 1 , 0x28 , 0x03 , 0x52 , 0x0 6 , 0x6f , 0x66 ,
0x66 , 0x73 , 0x65 , 0x74 , 0x1 2 , 0x12 , 0x0a , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x18 , 0x02 , 0x2 0 , 0x0 1 ,
0x28 , 0x03 , 0x52 , 0x0 4 , 0x73 , 0x69 , 0x7a , 0x65 , 0x22 , 0x3a , 0x0a , 0x18 , 0x4 c , 0x69 , 0x73 , 0x74 ,
0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x6 1 , 0x6e , 0x73 , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1e , 0x0a , 0x05 , 0x7 0 , 0x6c , 0x61 , 0x6e , 0x73 , 0x18 , 0x01 , 0x20 ,
0x03 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x6 1 , 0x6e , 0x52 , 0x05 , 0x70 ,
0x6c , 0x61 , 0x6e , 0x73 , 0x22 , 0x2c , 0x0a , 0x10 , 0x53 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6c , 0x61 , 0x6e ,
0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1 2 , 0x18 , 0x0a , 0x07 , 0x70 , 0x6c , 0x61 , 0x6e ,
0x49 , 0x64 , 0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x03 , 0x5 2 , 0x07 , 0x7 0 , 0x6c , 0x61 , 0x6e , 0x49 ,
0x64 , 0x73 , 0x32 , 0xd1 , 0x03 , 0x0a , 0x0b , 0x50 , 0x6c , 0x6 1 , 0x6 e , 0x53 , 0x6 5 , 0x72 , 0x7 6 , 0x69 ,
0x63 , 0x65 , 0x12 , 0x3b , 0x0a , 0x0a , 0x63 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e ,
0x12 , 0x15 , 0x2e , 0x7 0 , 0x62 , 0x2e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x5 0 , 0x6c , 0x61 , 0x6e ,
0x52 , 0x6 5 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x16 , 0x2e , 0x70 , 0x62 , 0x2e , 0x43 , 0x72 , 0x65 ,
0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x7 0 , 0x6f , 0x6e , 0x7 3 , 0x6 5 , 0x12 ,
0x33 , 0x0a , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5 0 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 , 0x2 e ,
0x70 , 0x62 , 0x2e , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x5 0 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 ,
0x7 5 , 0x6 5 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x 70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x53 , 0x75 , 0x63 ,
0x63 , 0x6 5 , 0x73 , 0x73 , 0x12 , 0x33 , 0x0a , 0x0a , 0x64 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c ,
0x61 , 0x6 e , 0x12 , 0x15 , 0x2e , 0x70 , 0x62 , 0x2e , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x49 , 0x64 , 0x1 2 , 0x12 , 0x0a , 0x04 , 0x6e , 0x61 , 0x6d , 0x65 , 0x18 , 0x02 , 0x20 , 0x01 ,
0x28 , 0x09 , 0x52 , 0x04 , 0x6e , 0x6 1 , 0x6d , 0x65 , 0x12 , 0x20 , 0x0a , 0x0b , 0x64 , 0x65 , 0x73 , 0x63 ,
0x72 , 0x69 , 0x70 , 0x7 4 , 0x69 , 0x6f , 0x6e , 0x18 , 0x15 , 0x2 0 , 0x01 , 0x28 , 0x09 , 0x52 , 0x0b , 0x64 ,
0x65 , 0x73 , 0x63 , 0x7 2 , 0x69 , 0x7 0 , 0x74 , 0x69 , 0x6f , 0x6e , 0x12 , 0x1 2 , 0x0a , 0x04 , 0x69 , 0x73 ,
0x4f , 0x6e , 0x18 , 0x03 , 0x20 , 0x01 , 0x28 , 0x08 , 0x52 , 0x04 , 0x69 , 0x73 , 0x4f , 0x6e , 0x12 , 0x1c ,
0x0a , 0x09 , 0x63 , 0x6c , 0x7 5 , 0x73 , 0x74 , 0x65 , 0x72 , 0x49 , 0x64 , 0x18 , 0x04 , 0x2 0 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x09 , 0x63 , 0x6c , 0x75 , 0x73 , 0x74 , 0x65 , 0x7 2 , 0x49 , 0x64 , 0x12 , 0x2a , 0x0a , 0x10 ,
0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c , 0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x18 , 0x05 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 , 0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x4c ,
0x69 , 0x6d , 0x69 , 0x74 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x28 , 0x0a , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 ,
0x75 , 0x6c , 0x6c , 0x46 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x18 , 0x14 , 0x20 , 0x01 , 0x28 ,
0x08 , 0x52 , 0x0f , 0x68 , 0x61 , 0x73 , 0x46 , 0x75 , 0x6c , 0x6c , 0x46 , 0x 65 , 0x61 , 0x74 , 0x75 , 0x72 ,
0x65 , 0x73 , 0x12 , 0x22 , 0x0a , 0x0 c , 0x6 6 , 0x65 , 0x61 , 0x74 , 0x75 , 0x72 , 0x65 , 0x73 , 0x4a , 0x53 ,
0x4f , 0x4e , 0x18 , 0x0 6 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x0c , 0x66 , 0x6 5 , 0x61 , 0x7 4 , 0x75 , 0x72 ,
0x65 , 0x73 , 0x4a , 0x53 , 0x4f , 0x4e , 0x12 , 0x1c , 0x0a , 0x09 , 0x70 , 0x72 , 0x69 , 0x6 3 , 0x65 , 0x54 ,
0x79 , 0x70 , 0x65 , 0x18 , 0x07 , 0x2 0 , 0x01 , 0x28 , 0x0 9 , 0x52 , 0x09 , 0x70 , 0x72 , 0x69 , 0x63 , 0x65 ,
0x54 , 0x79 , 0x7 0 , 0x65 , 0x12 , 0x2a , 0x0a , 0x1 0 , 0x74 , 0x72 , 0x61 , 0x66 , 0x66 , 0x6 9 , 0x63 , 0x50 ,
0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x08 , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x10 ,
0x7 4 , 0x72 , 0x61 , 0x66 , 0x66 , 0x69 , 0x63 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x12 , 0x2e , 0x0a , 0x12 , 0x6 2 , 0x61 , 0x6e , 0x64 , 0x77 , 0x69 , 0x6 4 , 0x7 4 , 0x68 , 0x50 , 0x72 , 0x69 ,
0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e , 0x18 , 0x0c , 0x20 , 0x01 , 0x28 , 0x0c , 0x52 , 0x12 , 0x62 , 0x61 ,
0x6e , 0x6 4 , 0x77 , 0x69 , 0x64 , 0x74 , 0x6 8 , 0x5 0 , 0x7 2 , 0x69 , 0x63 , 0x65 , 0x4a , 0x53 , 0x4f , 0x4e ,
0x12 , 0x22 , 0x0a , 0x0c , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 , 0x7 2 , 0x69 , 0x63 , 0x65 ,
0x18 , 0x09 , 0x20 , 0x01 , 0x28 , 0x02 , 0x52 , 0x0c , 0x 6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x50 ,
0x7 2 , 0x69 , 0x63 , 0x65 , 0x12 , 0x28 , 0x0a , 0x0f , 0x73 , 0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c ,
0x6c , 0x79 , 0x5 0 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x0a , 0x20 , 0x0 1 , 0x28 , 0x02 , 0x52 , 0x0f , 0x73 ,
0x65 , 0x61 , 0x73 , 0x6f , 0x6e , 0x61 , 0x6c , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x6 3 , 0x65 , 0x12 , 0x20 ,
0x0a , 0x0b , 0x79 , 0x65 , 0x61 , 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 , 0x18 , 0x0b , 0x20 ,
0x01 , 0x28 , 0x02 , 0x52 , 0x0b , 0x79 , 0x65 , 0x61, 0x72 , 0x6c , 0x79 , 0x50 , 0x72 , 0x69 , 0x63 , 0x65 ,
0x12 , 0x22 , 0x0a , 0x0c , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 , 0x72 , 0x73 ,
0x18 , 0x0d , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x0c , 0x 74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 ,
0x76 , 0x6 5 , 0x7 2 , 0x73 , 0x12 , 0x3c , 0x0a , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 ,
0x76 , 0x65 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 ,
0x72 , 0x18 , 0x0e , 0x20 , 0x01 , 0x28 , 0x05 , 0x52 , 0x19 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 ,
0x72 , 0x76 , 0x6 5 , 0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x50 , 0x65 , 0x72 , 0x53 , 0x65 , 0x72 , 0x76 ,
0x65 , 0x72 , 0x12 , 0x2a , 0x0a , 0x1 0 , 0x74 , 0x6f , 0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x65 ,
0x72 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x18 , 0x0f , 0x20 , 0x01 , 0x28 , 0x0 5 , 0x5 2 , 0x10 , 0x74 , 0x6f ,
0x74 , 0x61 , 0x6c , 0x53 , 0x65 , 0x72 , 0x76 , 0x6 5 , 0x7 2 , 0x4e , 0x61 , 0x6d , 0x65 , 0x73 , 0x12 , 0x24 ,
0x0a , 0x0d , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 ,
0x10 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0d , 0x64 , 0x61 , 0x 69 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x28 , 0x0a , 0x0f , 0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x52 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x73 , 0x18 , 0x11 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x0f , 0x6d ,
0x6f , 0x6e , 0x74 , 0x6 8 , 0x6c , 0x79 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x73 , 0x12 , 0x3c ,
0x0a , 0x1 9 , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x5 7 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 ,
0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x12 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x19 , 0x64 , 0x61 , 0x69 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 ,
0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x12 , 0x40 , 0x0a , 0x1b ,
0x6d , 0x6f , 0x6e , 0x74 , 0x68 , 0x6c , 0x79 , 0x5 7 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 , 0x6b , 0x65 , 0x74 ,
0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x18 , 0x1 3 , 0x20 , 0x01 , 0x28 ,
0x03 , 0x52 , 0x1b , 0x6d , 0x6f , 0x6e , 0x74 , 0x6 8 , 0x6c , 0x79 , 0x57 , 0x65 , 0x62 , 0x73 , 0x6f , 0x63 ,
0x6b , 0x65 , 0x74 , 0x43 , 0x6f , 0x6e , 0x6e , 0x65 , 0x63 , 0x74 , 0x69 , 0x6f , 0x6e , 0x73 , 0x22 , 0x2b ,
0x0a , 0x11 , 0x44 , 0x65 , 0x6c , 0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x7 5 ,
0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x0 6 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 , 0x01 , 0x20 ,
0x0 1 , 0x28 , 0x03 , 0x52 , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0x3 0 , 0x0a , 0x16 , 0x46 ,
0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x6 5 ,
0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x16 , 0x0a , 0x0 6 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x18 ,
0x01 , 0x20 , 0x0 1 , 0x28 , 0x03 , 0x52 , 0x06 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x22 , 0x37 , 0x0a ,
0x17 , 0x46 , 0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e ,
0x52 , 0x6 5 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1 c , 0x0a , 0x04 , 0x70 , 0x6c , 0x61 , 0x6e ,
0x18 , 0x01 , 0x20 , 0x01 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2 e , 0x50 , 0x6c , 0x61 , 0x6e ,
0x5 2 , 0x04 , 0x70 , 0x6c , 0x61 , 0x6e , 0x2 2 , 0x1d , 0x0a , 0x1b , 0x43 , 0x6f , 0x7 5 , 0x6e , 0x74 , 0x41 ,
0x6c , 0x6c , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x6 1 , 0x6e , 0x73 , 0x52 , 0x65 ,
0x7 1 , 0x75 , 0x65 , 0x73 , 0x7 4 , 0x22 , 0x45 , 0x0a , 0x17 , 0x4c , 0x69 , 0x73 , 0x74 , 0x4 5 , 0x6e , 0x61 ,
0x62 , 0x6c , 0x6 5 , 0x64 , 0x50 , 0x6 c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x7 1 , 0x75 , 0x65 , 0x73 , 0x7 4 ,
0x12 , 0x1 6 , 0x0a , 0x0 6 , 0x6f , 0x66 , 0x66 , 0x73 , 0x6 5 , 0x74 , 0x18 , 0x01 , 0x20 , 0x0 1 , 0x28 , 0x03 ,
0x52 , 0x06 , 0x6f, 0x66 , 0x66 , 0x73 , 0x65 , 0x74 , 0x1 2 , 0x12 , 0x0a , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 ,
0x18 , 0x02 , 0x20 , 0x01 , 0x28 , 0x03 , 0x52 , 0x04 , 0x73 , 0x69 , 0x7a , 0x65 , 0x22 , 0x3a , 0x0a , 0x18 ,
0x4c , 0x69 , 0x73 , 0x7 4 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6 c , 0x61 , 0x6e , 0x73 ,
0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x6 5 , 0x12 , 0x1e , 0x0a , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e ,
0x73 , 0x18 , 0x01 , 0x20 , 0x03 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c , 0x61 ,
0x6e , 0x5 2 , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e , 0x73 , 0x22 , 0x1e , 0x0a , 0x1c , 0x4 6 , 0x69 , 0x6e , 0x64 ,
0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e ,
0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x2 2 , 0x3f , 0x0a , 0x1d , 0x46 , 0x69 , 0x6e , 0x64 ,
0x41 , 0x6c , 0x6c , 0x4 1 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x6 2 , 0x6c , 0x65 , 0x5 0 , 0x6c , 0x61 , 0x6e ,
0x73 , 0x52 , 0x65 , 0x73 , 0x7 0 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x1 e , 0x0a , 0x0 5 , 0x70 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x18 , 0x01 , 0x2 0 , 0x03 , 0x28 , 0x0b , 0x32 , 0x08 , 0x2e , 0x70 , 0x62 , 0x2e , 0x50 , 0x6c ,
0x6 1 , 0x6e , 0x5 2 , 0x05 , 0x70 , 0x6c , 0x61 , 0x6e , 0x73 , 0x22 , 0x2c , 0x0a , 0x1 0 , 0x53 , 0x6f , 0x72 ,
0x74 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x7 1 , 0x75 , 0x65 , 0x73 , 0x74 , 0x12 , 0x18 , 0x0a ,
0x07 , 0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x73 , 0x18 , 0x01 , 0x2 0 , 0x03 , 0x28 , 0x0 3 , 0x52 , 0x07 ,
0x70 , 0x6c , 0x61 , 0x6e , 0x49 , 0x64 , 0x73 , 0x32 , 0xaf , 0x04 , 0x0a , 0x0b , 0x50 , 0x6c , 0x6 1 , 0x6 e ,
0x53 , 0x65 , 0x7 2 , 0x76 , 0x69 , 0x63 , 0x65 , 0x12 , 0x3b , 0x0a , 0x0a , 0x63 , 0x72 , 0x6 5 , 0x61 , 0x74 ,
0x6 5 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x15 , 0x2e , 0x 70 , 0x62 , 0x2e , 0x43 , 0x72 , 0x6 5 , 0x61 , 0x74 ,
0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1 6 , 0x2e , 0x70 ,
0x62 , 0x2 e , 0x43 , 0x72 , 0x65 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 ,
0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x33 , 0x0a , 0x0a , 0x75 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x12 , 0x15 , 0x2e , 0x70 , 0x62 , 0x2e , 0x55 , 0x70 , 0x64 , 0x61 , 0x74 , 0x65 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x52 ,
0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x12 , 0x4a , 0x0a , 0x0f , 0x66 , 0x69 , 0x6e ,
0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x1 2 , 0x1a , 0x2e , 0x70 ,
0x62 , 0x2e , 0x4 6 , 0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 ,
0x6 e , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x6 5 , 0x7 3 , 0x74 , 0x1a , 0x1b , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 ,
0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x73 ,
0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x1 2 , 0x4d , 0x0a , 0x14 , 0x63 , 0x6f , 0x7 5 , 0x6e , 0x74 , 0x41 , 0x6c ,
0x6c , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x6 5 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x1f , 0x2e ,
0x70 , 0x62 , 0x2e , 0x43 , 0x6f , 0x75 , 0x6e , 0x7 4 , 0x41 , 0x6c , 0x6c , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c ,
0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x7 4 , 0x1a , 0x14 ,
0x2e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x43 , 0x6f , 0x75 , 0x6e , 0x74 , 0x52 , 0x6 5 , 0x73 , 0x70 ,
0x6f , 0x6e, 0x73 , 0x65 , 0x1 2 , 0x4d , 0x0a , 0x10 , 0x6c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 ,
0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x12 , 0x1b , 0x2e , 0x70 , 0x62 , 0x2e , 0x4c , 0x69 ,
0x73 , 0x74 , 0x45 , 0x6e , 0x6 1 , 0x6 2 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 ,
0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1c , 0x2e , 0x70 , 0x6 2 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 ,
0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x5 2 , 0x65 , 0x73 , 0x70 , 0x6f ,
0x6e , 0x73 , 0x65 , 0x12 , 0x31 , 0x0a , 0x09 , 0x73 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 ,
0x12 , 0x14 , 0x2e , 0x70 , 0x62 , 0x2e , 0x53 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6 c , 0x61 , 0x6e , 0x73 , 0x5 2 ,
0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x5 3 ,
0x7 5 , 0x63 , 0x6 3 , 0x65 , 0x73 , 0x73 , 0x42 , 0x0 6 , 0x5a , 0x04 , 0x2e , 0x2f , 0x70 , 0x62 , 0x62 , 0x0 6 ,
0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x12 , 0x33 , 0x0a , 0x0a , 0x64 , 0x65 , 0x6c ,
0x65 , 0x7 4 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x12 , 0x1 5 , 0x2e , 0x70 , 0x62 , 0x2e , 0x44 , 0x65 , 0x6c ,
0x65 , 0x74 , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e ,
0x2 e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x4 3 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x12 , 0x4a ,
0x0a , 0x0f , 0x66 , 0x69 , 0x6e, 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 ,
0x6e , 0x12 , 0x1a , 0x2e , 0x70 , 0x6 2 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x4 5 , 0x6e , 0x61 , 0x62 , 0x6c ,
0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1b , 0x2e ,
0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x4d , 0x0a , 0x1 4 , 0x63 , 0x6f ,
0x75 , 0x6e , 0x74 , 0x41 , 0x6c , 0x6c , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x12 , 0x1f , 0x2e , 0x70 , 0x62 , 0x2e , 0x43 , 0x6f , 0x75 , 0x6e , 0x7 4 , 0x41 , 0x6c , 0x6c ,
0x45 , 0x6e , 0x61 , 0x62 , 0x6c, 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73, 0x74 , 0x1a , 0x14 , 0x2e , 0x70 , 0x62 , 0x2e , 0x52 , 0x50 , 0x43 , 0x43 , 0x6f , 0x7 5 , 0x6e ,
0x74 , 0x52 , 0x65 , 0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x1 2 , 0x4d , 0x0a , 0x10 , 0x6c , 0x69 , 0x73 ,
0x74 , 0x45 , 0x6e, 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x1 2 , 0x1b , 0x2e ,
0x70 , 0x62 , 0x2e , 0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x61 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c ,
0x6 1 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x7 5 , 0x65 , 0x73 , 0x74 , 0x1a , 0x1 c , 0x2e , 0x70 , 0x62 , 0x2e ,
0x4c , 0x69 , 0x73 , 0x74 , 0x45 , 0x6e , 0x6 1 , 0x62 , 0x6c , 0x65 , 0x64 , 0x50 , 0x6c , 0x61 , 0x6e , 0x7 3 ,
0x52 , 0x65 , 0x7 3 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x5c , 0x0a , 0x15 , 0x66 , 0x69 , 0x6e , 0x64 ,
0x41 , 0x6c , 0x6c , 0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e ,
0x73 , 0x12 , 0x20 , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c , 0x41 , 0x76 ,
0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 ,
0x65 , 0x73 , 0x74 , 0x1a , 0x21 , 0x2e , 0x70 , 0x62 , 0x2e , 0x46 , 0x69 , 0x6e , 0x64 , 0x41 , 0x6c , 0x6c ,
0x41 , 0x76 , 0x61 , 0x69 , 0x6c , 0x61 , 0x62 , 0x6c , 0x65 , 0x50 , 0x6c , 0x61 , 0x6e , 0x73 , 0x52 , 0x65 ,
0x73 , 0x70 , 0x6f , 0x6e , 0x73 , 0x65 , 0x12 , 0x31 , 0x0a , 0x09 , 0x73 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6c ,
0x61 , 0x6e , 0x73 , 0x12 , 0x14 , 0x2e , 0x70 , 0x62 , 0x2e , 0x53 , 0x6f , 0x72 , 0x74 , 0x50 , 0x6c , 0x61 ,
0x6e , 0x73 , 0x52 , 0x65 , 0x71 , 0x75 , 0x65 , 0x73 , 0x74 , 0x1a , 0x0e , 0x2e , 0x70 , 0x62 , 0x2e , 0x52 ,
0x50 , 0x43 , 0x53 , 0x75 , 0x63 , 0x63 , 0x65 , 0x73 , 0x73 , 0x42 , 0x06 , 0x5a , 0x04 , 0x2e , 0x2f , 0x70 ,
0x62 , 0x62 , 0x06 , 0x70 , 0x72 , 0x6f , 0x74 , 0x6f , 0x33 ,
}
var (
@@ -962,7 +1080,7 @@ func file_service_plan_proto_rawDescGZIP() []byte {
return file_service_plan_proto_rawDescData
}
var file_service_plan_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 10 )
var file_service_plan_proto_msgTypes = make ( [ ] protoimpl . MessageInfo , 12 )
var file_service_plan_proto_goTypes = [ ] interface { } {
( * CreatePlanRequest ) ( nil ) , // 0: pb.CreatePlanRequest
( * CreatePlanResponse ) ( nil ) , // 1: pb.CreatePlanResponse
@@ -973,33 +1091,38 @@ var file_service_plan_proto_goTypes = []interface{}{
( * CountAllEnabledPlansRequest ) ( nil ) , // 6: pb.CountAllEnabledPlansRequest
( * ListEnabledPlansRequest ) ( nil ) , // 7: pb.ListEnabledPlansRequest
( * ListEnabledPlansResponse ) ( nil ) , // 8: pb.ListEnabledPlansResponse
( * Sort PlansRequest) ( nil ) , // 9: pb.Sort PlansRequest
( * Plan ) ( nil ) , // 10: pb.Plan
( * RPCSucc ess ) ( nil ) , // 11: pb.RPCSucc ess
( * RPCCountResponse ) ( nil ) , // 12: pb.RPCCountResponse
( * FindAllAvailable PlansRequest) ( nil ) , // 9: pb.FindAllAvailable PlansRequest
( * FindAllAvailablePlansResponse ) ( nil ) , // 10: pb.FindAllAvailablePlansResponse
( * SortPlansRequ est ) ( nil ) , // 11: pb.SortPlansRequ est
( * Plan ) ( nil ) , // 12: pb.Plan
( * RPCSuccess ) ( nil ) , // 13: pb.RPCSuccess
( * RPCCountResponse ) ( nil ) , // 14: pb.RPCCountResponse
}
var file_service_plan_proto_depIdxs = [ ] int32 {
10 , // 0: pb.FindEnabledPlanResponse.plan:type_name -> pb.Plan
10 , // 1: pb.ListEnabledPlansResponse.plans:type_name -> pb.Plan
0 , // 2: pb.PlanService.createPlan:input_type -> pb.CreatePlanRequest
2 , // 3: pb.PlanService.upd atePlan:input_type -> pb.Upd atePlanRequest
3 , // 4: pb.PlanService.dele tePlan:input_type -> pb.Dele tePlanRequest
4 , // 5: pb.PlanService.findEnabled Plan:input_type -> pb.FindEnabled PlanRequest
6 , // 6: pb.PlanService.countAll EnabledPlans :input_type -> pb.CountAll EnabledPlans Request
7 , // 7: pb.PlanService.list EnabledPlans:input_type -> pb.List EnabledPlansRequest
9 , // 8: pb.PlanService.sort Plans:input_type -> pb.Sort PlansRequest
1 , // 9: pb.PlanService.creat ePlan:out put_type -> pb.CreatePlanResponse
11 , // 10: pb.PlanService.updatePlan:out put_type -> pb.RPCSucc ess
11 , // 11: pb.PlanService.dele tePlan:output_type -> pb.RPCSuccess
5 , // 12: pb.PlanService.findEnabled Plan:output_type -> pb.FindEnabledPlanResponse
12 , // 13: pb.PlanService.countAllEnabled Plans :output_type -> pb.RPCCountResponse
8 , // 14: pb.PlanService.list EnabledPlans :output_type -> pb.List EnabledPlans Response
11 , // 15: pb.PlanService.sort Plans:output_type -> pb.RPCSuccess
9 , // [9:16] is the sub-list for method output_typ e
2 , // [2:9] is the sub-list for method input_typ e
2 , // [2:2] is the sub-list for extension type_name
2 , // [2:2 ] is the sub-list for extension extende e
0 , // [0:2 ] is the sub-list for field type_nam e
12 , // 0: pb.FindEnabledPlanResponse.plan:type_name -> pb.Plan
12 , // 1: pb.ListEnabledPlansResponse.plans:type_name -> pb.Plan
12 , // 2: pb.FindAllAvailablePlansResponse.plans:type_name -> pb.Plan
0 , // 3: pb.PlanService.cre atePlan:input_type -> pb.Cre atePlanRequest
2 , // 4: pb.PlanService.upda tePlan:input_type -> pb.Upda tePlanRequest
3 , // 5: pb.PlanService.delete Plan:input_type -> pb.Delete PlanRequest
4 , // 6: pb.PlanService.find EnabledPlan:input_type -> pb.Find EnabledPlanRequest
6 , // 7: pb.PlanService.countAll EnabledPlans:input_type -> pb.CountAll EnabledPlansRequest
7 , // 8: pb.PlanService.listEnabled Plans:input_type -> pb.ListEnabled PlansRequest
9 , // 9: pb.PlanService.findAllAvailabl ePlans:in put_type -> pb.FindAllAvailablePlansRequest
11 , // 10: pb.PlanService.sortPlans:in put_type -> pb.SortPlansRequ est
1 , // 11: pb.PlanService.crea tePlan:output_type -> pb.CreatePlanResponse
13 , // 12: pb.PlanService.update Plan:output_type -> pb.RPCSuccess
13 , // 13: pb.PlanService.delete Plan:output_type -> pb.RPCSuccess
5 , // 14: pb.PlanService.find EnabledPlan:output_type -> pb.Find EnabledPlanResponse
14 , // 15: pb.PlanService.countAllEnabled Plans:output_type -> pb.RPCCountResponse
8 , // 16: pb.PlanService.listEnabledPlans:output_type -> pb.ListEnabledPlansRespons e
10 , // 17: pb.PlanService.findAllAvailablePlans:output_type -> pb.FindAllAvailablePlansRespons e
13 , // 18: pb.PlanService.sortPlans:output_type -> pb.RPCSuccess
11 , // [11:19 ] is the sub-list for method output_typ e
3 , // [3:11 ] is the sub-list for method input_typ e
3 , // [3:3] is the sub-list for extension type_name
3 , // [3:3] is the sub-list for extension extendee
0 , // [0:3] is the sub-list for field type_name
}
func init ( ) { file_service_plan_proto_init ( ) }
@@ -1119,6 +1242,30 @@ func file_service_plan_proto_init() {
}
}
file_service_plan_proto_msgTypes [ 9 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * FindAllAvailablePlansRequest ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_service_plan_proto_msgTypes [ 10 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * FindAllAvailablePlansResponse ) ; i {
case 0 :
return & v . state
case 1 :
return & v . sizeCache
case 2 :
return & v . unknownFields
default :
return nil
}
}
file_service_plan_proto_msgTypes [ 11 ] . Exporter = func ( v interface { } , i int ) interface { } {
switch v := v . ( * SortPlansRequest ) ; i {
case 0 :
return & v . state
@@ -1137,7 +1284,7 @@ func file_service_plan_proto_init() {
GoPackagePath : reflect . TypeOf ( x { } ) . PkgPath ( ) ,
RawDescriptor : file_service_plan_proto_rawDesc ,
NumEnums : 0 ,
NumMessages : 10 ,
NumMessages : 12 ,
NumExtensions : 0 ,
NumServices : 1 ,
} ,