5 Star 0 Fork 0

Md/gu

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
gms_center.pb.go 87.24 KB
一键复制 编辑 原始数据 按行查看 历史
风流小青年5311 提交于 2023-02-17 14:06 +08:00 . 礼包码修改
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478
// Code generated by protoc-gen-go. DO NOT EDIT.
// versions:
// protoc-gen-go v1.28.1
// protoc v3.20.0
// source: gms_center.proto
package gudbgms
import (
protoreflect "google.golang.org/protobuf/reflect/protoreflect"
protoimpl "google.golang.org/protobuf/runtime/protoimpl"
reflect "reflect"
sync "sync"
)
const (
// Verify that this generated code is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
// Verify that runtime/protoimpl is sufficiently up-to-date.
_ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
)
// 热更新版本基础配置
type GmsAppHotUpdateBase struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
BaseId int32 `protobuf:"varint,1,opt,name=base_id,json=baseId,proto3" json:"base_id,omitempty"` // 基础Id[主键]
BaseName string `protobuf:"bytes,2,opt,name=base_name,json=baseName,proto3" json:"base_name,omitempty"` // 基础名称
ClientAppVersion int32 `protobuf:"varint,3,opt,name=client_app_version,json=clientAppVersion,proto3" json:"client_app_version,omitempty"` // 客户端主版本号
ClientVersion int32 `protobuf:"varint,4,opt,name=client_version,json=clientVersion,proto3" json:"client_version,omitempty"` // 客户端版本号(和资源版本号挂钩)
AppDownloadAddr string `protobuf:"bytes,5,opt,name=app_download_addr,json=appDownloadAddr,proto3" json:"app_download_addr,omitempty"` // App下载地址
HotUpdateAddr1 string `protobuf:"bytes,6,opt,name=hot_update_addr1,json=hotUpdateAddr1,proto3" json:"hot_update_addr1,omitempty"` // 热更新地址1
HotUpdateAddr2 string `protobuf:"bytes,7,opt,name=hot_update_addr2,json=hotUpdateAddr2,proto3" json:"hot_update_addr2,omitempty"` // 热更新地址2
H5ClientUpdateVersion int32 `protobuf:"varint,8,opt,name=h5_client_update_version,json=h5ClientUpdateVersion,proto3" json:"h5_client_update_version,omitempty"` // H5客户端更新版本号
}
func (x *GmsAppHotUpdateBase) Reset() {
*x = GmsAppHotUpdateBase{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[0]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppHotUpdateBase) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppHotUpdateBase) ProtoMessage() {}
func (x *GmsAppHotUpdateBase) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[0]
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 GmsAppHotUpdateBase.ProtoReflect.Descriptor instead.
func (*GmsAppHotUpdateBase) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{0}
}
func (x *GmsAppHotUpdateBase) GetBaseId() int32 {
if x != nil {
return x.BaseId
}
return 0
}
func (x *GmsAppHotUpdateBase) GetBaseName() string {
if x != nil {
return x.BaseName
}
return ""
}
func (x *GmsAppHotUpdateBase) GetClientAppVersion() int32 {
if x != nil {
return x.ClientAppVersion
}
return 0
}
func (x *GmsAppHotUpdateBase) GetClientVersion() int32 {
if x != nil {
return x.ClientVersion
}
return 0
}
func (x *GmsAppHotUpdateBase) GetAppDownloadAddr() string {
if x != nil {
return x.AppDownloadAddr
}
return ""
}
func (x *GmsAppHotUpdateBase) GetHotUpdateAddr1() string {
if x != nil {
return x.HotUpdateAddr1
}
return ""
}
func (x *GmsAppHotUpdateBase) GetHotUpdateAddr2() string {
if x != nil {
return x.HotUpdateAddr2
}
return ""
}
func (x *GmsAppHotUpdateBase) GetH5ClientUpdateVersion() int32 {
if x != nil {
return x.H5ClientUpdateVersion
}
return 0
}
// 热更新版本明细配置
type GmsAppHotUpdateDetail struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
BaseId int32 `protobuf:"varint,1,opt,name=base_id,json=baseId,proto3" json:"base_id,omitempty"` // 基础ID[主键]
ResFileName string `protobuf:"bytes,2,opt,name=res_file_name,json=resFileName,proto3" json:"res_file_name,omitempty"` // 资源文件名[主键]
CacheResFileName string `protobuf:"bytes,3,opt,name=cache_res_file_name,json=cacheResFileName,proto3" json:"cache_res_file_name,omitempty"` // 缓存资源文件名
ResFileMd5 string `protobuf:"bytes,4,opt,name=res_file_md5,json=resFileMd5,proto3" json:"res_file_md5,omitempty"` // 资源Md5
ResFileSize int64 `protobuf:"varint,5,opt,name=res_file_size,json=resFileSize,proto3" json:"res_file_size,omitempty"` // 资源大小(字节)
ResVersion int32 `protobuf:"varint,6,opt,name=res_version,json=resVersion,proto3" json:"res_version,omitempty"` // 资源版本
SyncTime int64 `protobuf:"varint,7,opt,name=sync_time,json=syncTime,proto3" json:"sync_time,omitempty"` // 同步时间
IsBg bool `protobuf:"varint,8,opt,name=is_bg,json=isBg,proto3" json:"is_bg,omitempty"` // 是否后台下载
}
func (x *GmsAppHotUpdateDetail) Reset() {
*x = GmsAppHotUpdateDetail{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[1]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppHotUpdateDetail) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppHotUpdateDetail) ProtoMessage() {}
func (x *GmsAppHotUpdateDetail) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[1]
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 GmsAppHotUpdateDetail.ProtoReflect.Descriptor instead.
func (*GmsAppHotUpdateDetail) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{1}
}
func (x *GmsAppHotUpdateDetail) GetBaseId() int32 {
if x != nil {
return x.BaseId
}
return 0
}
func (x *GmsAppHotUpdateDetail) GetResFileName() string {
if x != nil {
return x.ResFileName
}
return ""
}
func (x *GmsAppHotUpdateDetail) GetCacheResFileName() string {
if x != nil {
return x.CacheResFileName
}
return ""
}
func (x *GmsAppHotUpdateDetail) GetResFileMd5() string {
if x != nil {
return x.ResFileMd5
}
return ""
}
func (x *GmsAppHotUpdateDetail) GetResFileSize() int64 {
if x != nil {
return x.ResFileSize
}
return 0
}
func (x *GmsAppHotUpdateDetail) GetResVersion() int32 {
if x != nil {
return x.ResVersion
}
return 0
}
func (x *GmsAppHotUpdateDetail) GetSyncTime() int64 {
if x != nil {
return x.SyncTime
}
return 0
}
func (x *GmsAppHotUpdateDetail) GetIsBg() bool {
if x != nil {
return x.IsBg
}
return false
}
// 登录类型
type GmsAppLoginType struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
LoginType int32 `protobuf:"varint,1,opt,name=login_type,json=loginType,proto3" json:"login_type,omitempty"` // 登录类型[主键]
LoginTypeName string `protobuf:"bytes,2,opt,name=login_type_name,json=loginTypeName,proto3" json:"login_type_name,omitempty"` // 登录类型名称
}
func (x *GmsAppLoginType) Reset() {
*x = GmsAppLoginType{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[2]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppLoginType) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppLoginType) ProtoMessage() {}
func (x *GmsAppLoginType) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[2]
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 GmsAppLoginType.ProtoReflect.Descriptor instead.
func (*GmsAppLoginType) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{2}
}
func (x *GmsAppLoginType) GetLoginType() int32 {
if x != nil {
return x.LoginType
}
return 0
}
func (x *GmsAppLoginType) GetLoginTypeName() string {
if x != nil {
return x.LoginTypeName
}
return ""
}
// 游戏公告
type GmsAppNotice struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 公告Id[主键]
Icon string `protobuf:"bytes,2,opt,name=icon,proto3" json:"icon,omitempty"` // 显示的图标
Title string `protobuf:"bytes,3,opt,name=title,proto3" json:"title,omitempty"` // 显示的标题
ContentZh string `protobuf:"bytes,4,opt,name=content_zh,json=contentZh,proto3" json:"content_zh,omitempty"` // 显示的内容
ContentJp string `protobuf:"bytes,5,opt,name=content_jp,json=contentJp,proto3" json:"content_jp,omitempty"` // 显示的内容
ContentEn string `protobuf:"bytes,6,opt,name=content_en,json=contentEn,proto3" json:"content_en,omitempty"` // 显示的内容
StrTime string `protobuf:"bytes,7,opt,name=str_time,json=strTime,proto3" json:"str_time,omitempty"` // 显示的时间
BeginTime int64 `protobuf:"varint,8,opt,name=begin_time,json=beginTime,proto3" json:"begin_time,omitempty"` // 开始时间
EndTime int64 `protobuf:"varint,9,opt,name=end_time,json=endTime,proto3" json:"end_time,omitempty"` // 结束时间
Lan string `protobuf:"bytes,10,opt,name=lan,proto3" json:"lan,omitempty"` // 语言
Sort int32 `protobuf:"varint,11,opt,name=sort,proto3" json:"sort,omitempty"` // 排序
Remark string `protobuf:"bytes,12,opt,name=remark,proto3" json:"remark,omitempty"` // 备注
}
func (x *GmsAppNotice) Reset() {
*x = GmsAppNotice{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[3]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppNotice) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppNotice) ProtoMessage() {}
func (x *GmsAppNotice) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[3]
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 GmsAppNotice.ProtoReflect.Descriptor instead.
func (*GmsAppNotice) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{3}
}
func (x *GmsAppNotice) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
func (x *GmsAppNotice) GetIcon() string {
if x != nil {
return x.Icon
}
return ""
}
func (x *GmsAppNotice) GetTitle() string {
if x != nil {
return x.Title
}
return ""
}
func (x *GmsAppNotice) GetContentZh() string {
if x != nil {
return x.ContentZh
}
return ""
}
func (x *GmsAppNotice) GetContentJp() string {
if x != nil {
return x.ContentJp
}
return ""
}
func (x *GmsAppNotice) GetContentEn() string {
if x != nil {
return x.ContentEn
}
return ""
}
func (x *GmsAppNotice) GetStrTime() string {
if x != nil {
return x.StrTime
}
return ""
}
func (x *GmsAppNotice) GetBeginTime() int64 {
if x != nil {
return x.BeginTime
}
return 0
}
func (x *GmsAppNotice) GetEndTime() int64 {
if x != nil {
return x.EndTime
}
return 0
}
func (x *GmsAppNotice) GetLan() string {
if x != nil {
return x.Lan
}
return ""
}
func (x *GmsAppNotice) GetSort() int32 {
if x != nil {
return x.Sort
}
return 0
}
func (x *GmsAppNotice) GetRemark() string {
if x != nil {
return x.Remark
}
return ""
}
// 订单
type GmsAppOrders struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
OrderId string `protobuf:"bytes,1,opt,name=order_id,json=orderId,proto3" json:"order_id,omitempty"` // 订单号[主键]
SdkOrderId string `protobuf:"bytes,2,opt,name=sdk_order_id,json=sdkOrderId,proto3" json:"sdk_order_id,omitempty"` // 渠道的订单Id
ReceiveDate int64 `protobuf:"varint,3,opt,name=receive_date,json=receiveDate,proto3" json:"receive_date,omitempty"` // 接收时间
PayType string `protobuf:"bytes,4,opt,name=pay_type,json=payType,proto3" json:"pay_type,omitempty"` // 支付类型
Currency string `protobuf:"bytes,5,opt,name=currency,proto3" json:"currency,omitempty"` // 货币类型
Amount string `protobuf:"bytes,6,opt,name=amount,proto3" json:"amount,omitempty"` // 金额
PackageType int32 `protobuf:"varint,7,opt,name=package_type,json=packageType,proto3" json:"package_type,omitempty"` // 包类型
ServId int32 `protobuf:"varint,8,opt,name=serv_id,json=servId,proto3" json:"serv_id,omitempty"` // 游戏服务器唯一Id
Rid int32 `protobuf:"varint,9,opt,name=rid,proto3" json:"rid,omitempty"` // 角色Id
SdkProductId string `protobuf:"bytes,10,opt,name=sdk_product_id,json=sdkProductId,proto3" json:"sdk_product_id,omitempty"` // Sdk商品Id
ProductId int32 `protobuf:"varint,11,opt,name=product_id,json=productId,proto3" json:"product_id,omitempty"` // 游戏商品Id
OrderStatus int32 `protobuf:"varint,12,opt,name=order_status,json=orderStatus,proto3" json:"order_status,omitempty"` // 订单状态(0待推送1推送成功101待支付102异常订单103推送失败)
OrderMessage string `protobuf:"bytes,13,opt,name=order_message,json=orderMessage,proto3" json:"order_message,omitempty"` // 订单状态信息
IsSandbox bool `protobuf:"varint,14,opt,name=is_sandbox,json=isSandbox,proto3" json:"is_sandbox,omitempty"` // 是否沙盒测试
Source string `protobuf:"bytes,15,opt,name=source,proto3" json:"source,omitempty"` // 来源
}
func (x *GmsAppOrders) Reset() {
*x = GmsAppOrders{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[4]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppOrders) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppOrders) ProtoMessage() {}
func (x *GmsAppOrders) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[4]
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 GmsAppOrders.ProtoReflect.Descriptor instead.
func (*GmsAppOrders) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{4}
}
func (x *GmsAppOrders) GetOrderId() string {
if x != nil {
return x.OrderId
}
return ""
}
func (x *GmsAppOrders) GetSdkOrderId() string {
if x != nil {
return x.SdkOrderId
}
return ""
}
func (x *GmsAppOrders) GetReceiveDate() int64 {
if x != nil {
return x.ReceiveDate
}
return 0
}
func (x *GmsAppOrders) GetPayType() string {
if x != nil {
return x.PayType
}
return ""
}
func (x *GmsAppOrders) GetCurrency() string {
if x != nil {
return x.Currency
}
return ""
}
func (x *GmsAppOrders) GetAmount() string {
if x != nil {
return x.Amount
}
return ""
}
func (x *GmsAppOrders) GetPackageType() int32 {
if x != nil {
return x.PackageType
}
return 0
}
func (x *GmsAppOrders) GetServId() int32 {
if x != nil {
return x.ServId
}
return 0
}
func (x *GmsAppOrders) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GmsAppOrders) GetSdkProductId() string {
if x != nil {
return x.SdkProductId
}
return ""
}
func (x *GmsAppOrders) GetProductId() int32 {
if x != nil {
return x.ProductId
}
return 0
}
func (x *GmsAppOrders) GetOrderStatus() int32 {
if x != nil {
return x.OrderStatus
}
return 0
}
func (x *GmsAppOrders) GetOrderMessage() string {
if x != nil {
return x.OrderMessage
}
return ""
}
func (x *GmsAppOrders) GetIsSandbox() bool {
if x != nil {
return x.IsSandbox
}
return false
}
func (x *GmsAppOrders) GetSource() string {
if x != nil {
return x.Source
}
return ""
}
// 包类型
type GmsAppPackageType struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
PackageType int32 `protobuf:"varint,1,opt,name=package_type,json=packageType,proto3" json:"package_type,omitempty"` // 包类型[主键]
PackageTypeName string `protobuf:"bytes,2,opt,name=package_type_name,json=packageTypeName,proto3" json:"package_type_name,omitempty"` // 包类型名称
HotUpdateBaseId int32 `protobuf:"varint,3,opt,name=hot_update_base_id,json=hotUpdateBaseId,proto3" json:"hot_update_base_id,omitempty"` // 热更新基础Id
ReviewVersions string `protobuf:"bytes,4,opt,name=review_versions,json=reviewVersions,proto3" json:"review_versions,omitempty"` // 审核中的客户端版本号列表','分割
StrServIds string `protobuf:"bytes,5,opt,name=str_serv_ids,json=strServIds,proto3" json:"str_serv_ids,omitempty"` // 可用游戏服务器Id, ','分割
StrNoticeIds string `protobuf:"bytes,6,opt,name=str_notice_ids,json=strNoticeIds,proto3" json:"str_notice_ids,omitempty"` // 可用游戏公告Id, ','分割
StrImg string `protobuf:"bytes,7,opt,name=str_img,json=strImg,proto3" json:"str_img,omitempty"` // 公告图片, ','分割
IsShowH5Recharge bool `protobuf:"varint,8,opt,name=is_show_h5_recharge,json=isShowH5Recharge,proto3" json:"is_show_h5_recharge,omitempty"` // 是否显示H5充值
IsOffApp bool `protobuf:"varint,9,opt,name=is_off_app,json=isOffApp,proto3" json:"is_off_app,omitempty"` // 是否下架
IsHideDefaultRecharge bool `protobuf:"varint,10,opt,name=is_hide_default_recharge,json=isHideDefaultRecharge,proto3" json:"is_hide_default_recharge,omitempty"` // 是否隐藏官网充值
Remark string `protobuf:"bytes,11,opt,name=remark,proto3" json:"remark,omitempty"` // 备注
StrSdkCfgIds string `protobuf:"bytes,12,opt,name=str_sdk_cfg_ids,json=strSdkCfgIds,proto3" json:"str_sdk_cfg_ids,omitempty"` // 关联的渠道配置, ','分割
}
func (x *GmsAppPackageType) Reset() {
*x = GmsAppPackageType{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[5]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppPackageType) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppPackageType) ProtoMessage() {}
func (x *GmsAppPackageType) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[5]
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 GmsAppPackageType.ProtoReflect.Descriptor instead.
func (*GmsAppPackageType) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{5}
}
func (x *GmsAppPackageType) GetPackageType() int32 {
if x != nil {
return x.PackageType
}
return 0
}
func (x *GmsAppPackageType) GetPackageTypeName() string {
if x != nil {
return x.PackageTypeName
}
return ""
}
func (x *GmsAppPackageType) GetHotUpdateBaseId() int32 {
if x != nil {
return x.HotUpdateBaseId
}
return 0
}
func (x *GmsAppPackageType) GetReviewVersions() string {
if x != nil {
return x.ReviewVersions
}
return ""
}
func (x *GmsAppPackageType) GetStrServIds() string {
if x != nil {
return x.StrServIds
}
return ""
}
func (x *GmsAppPackageType) GetStrNoticeIds() string {
if x != nil {
return x.StrNoticeIds
}
return ""
}
func (x *GmsAppPackageType) GetStrImg() string {
if x != nil {
return x.StrImg
}
return ""
}
func (x *GmsAppPackageType) GetIsShowH5Recharge() bool {
if x != nil {
return x.IsShowH5Recharge
}
return false
}
func (x *GmsAppPackageType) GetIsOffApp() bool {
if x != nil {
return x.IsOffApp
}
return false
}
func (x *GmsAppPackageType) GetIsHideDefaultRecharge() bool {
if x != nil {
return x.IsHideDefaultRecharge
}
return false
}
func (x *GmsAppPackageType) GetRemark() string {
if x != nil {
return x.Remark
}
return ""
}
func (x *GmsAppPackageType) GetStrSdkCfgIds() string {
if x != nil {
return x.StrSdkCfgIds
}
return ""
}
// 区服
type GmsAppServ struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
ServId int32 `protobuf:"varint,1,opt,name=serv_id,json=servId,proto3" json:"serv_id,omitempty"` // 游戏服务器唯一ID
ServName string `protobuf:"bytes,2,opt,name=serv_name,json=servName,proto3" json:"serv_name,omitempty"` // 游戏服务器名称
GameIp string `protobuf:"bytes,3,opt,name=game_ip,json=gameIp,proto3" json:"game_ip,omitempty"` // 游戏服务器IP
GamePort int32 `protobuf:"varint,4,opt,name=game_port,json=gamePort,proto3" json:"game_port,omitempty"` // 游戏服务器端口
GameRpcPort int32 `protobuf:"varint,5,opt,name=game_rpc_port,json=gameRpcPort,proto3" json:"game_rpc_port,omitempty"` // 游戏服务器RPC端口
OpenDate int64 `protobuf:"varint,6,opt,name=open_date,json=openDate,proto3" json:"open_date,omitempty"` // 正式开服时间
StopMessage string `protobuf:"bytes,7,opt,name=stop_message,json=stopMessage,proto3" json:"stop_message,omitempty"` // 无法登录时的提示语句(维护或未开服)
Sort int32 `protobuf:"varint,8,opt,name=sort,proto3" json:"sort,omitempty"` // 排序,越小越前
Status int32 `protobuf:"varint,9,opt,name=status,proto3" json:"status,omitempty"` // 状态:0失效 1维护 2新服 3流畅 4火爆
Remark string `protobuf:"bytes,10,opt,name=remark,proto3" json:"remark,omitempty"` // 备注
}
func (x *GmsAppServ) Reset() {
*x = GmsAppServ{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[6]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppServ) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppServ) ProtoMessage() {}
func (x *GmsAppServ) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[6]
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 GmsAppServ.ProtoReflect.Descriptor instead.
func (*GmsAppServ) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{6}
}
func (x *GmsAppServ) GetServId() int32 {
if x != nil {
return x.ServId
}
return 0
}
func (x *GmsAppServ) GetServName() string {
if x != nil {
return x.ServName
}
return ""
}
func (x *GmsAppServ) GetGameIp() string {
if x != nil {
return x.GameIp
}
return ""
}
func (x *GmsAppServ) GetGamePort() int32 {
if x != nil {
return x.GamePort
}
return 0
}
func (x *GmsAppServ) GetGameRpcPort() int32 {
if x != nil {
return x.GameRpcPort
}
return 0
}
func (x *GmsAppServ) GetOpenDate() int64 {
if x != nil {
return x.OpenDate
}
return 0
}
func (x *GmsAppServ) GetStopMessage() string {
if x != nil {
return x.StopMessage
}
return ""
}
func (x *GmsAppServ) GetSort() int32 {
if x != nil {
return x.Sort
}
return 0
}
func (x *GmsAppServ) GetStatus() int32 {
if x != nil {
return x.Status
}
return 0
}
func (x *GmsAppServ) GetRemark() string {
if x != nil {
return x.Remark
}
return ""
}
// 白名单
type GmsAppWhiteList struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
WhiteListType int32 `protobuf:"varint,1,opt,name=white_list_type,json=whiteListType,proto3" json:"white_list_type,omitempty"` // 白名单类型(1=域名, 2=IP, 3=游戏账号, 4=游戏账号Id, 5=游戏角色Id)[联合主键]
WhiteListValue string `protobuf:"bytes,2,opt,name=white_list_value,json=whiteListValue,proto3" json:"white_list_value,omitempty"` // 白名单值[联合主键]
Remark string `protobuf:"bytes,3,opt,name=remark,proto3" json:"remark,omitempty"` // 备注
}
func (x *GmsAppWhiteList) Reset() {
*x = GmsAppWhiteList{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[7]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppWhiteList) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppWhiteList) ProtoMessage() {}
func (x *GmsAppWhiteList) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[7]
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 GmsAppWhiteList.ProtoReflect.Descriptor instead.
func (*GmsAppWhiteList) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{7}
}
func (x *GmsAppWhiteList) GetWhiteListType() int32 {
if x != nil {
return x.WhiteListType
}
return 0
}
func (x *GmsAppWhiteList) GetWhiteListValue() string {
if x != nil {
return x.WhiteListValue
}
return ""
}
func (x *GmsAppWhiteList) GetRemark() string {
if x != nil {
return x.Remark
}
return ""
}
// 账号
type GmsGameAccount struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Uid int32 `protobuf:"varint,1,opt,name=uid,proto3" json:"uid,omitempty"` // 账号ID[主键]
Account string `protobuf:"bytes,2,opt,name=account,proto3" json:"account,omitempty"` // 账号或第三放用户唯一Id
Pwd string `protobuf:"bytes,3,opt,name=pwd,proto3" json:"pwd,omitempty"` // 密码
Phone string `protobuf:"bytes,4,opt,name=phone,proto3" json:"phone,omitempty"` // 绑定的手机号
LoginType int32 `protobuf:"varint,5,opt,name=login_type,json=loginType,proto3" json:"login_type,omitempty"` // 登录类型,1.使用UID登陆(前面需要带X), 2.账号密码登陆(需手动注册账号密码), 其他为第三方绑定方式登陆,如:qq登陆、微信登陆
RegPackageType int32 `protobuf:"varint,6,opt,name=reg_package_type,json=regPackageType,proto3" json:"reg_package_type,omitempty"` // 注册的包类型
IsForbid bool `protobuf:"varint,7,opt,name=is_forbid,json=isForbid,proto3" json:"is_forbid,omitempty"` // 是否禁用
ForbidExpire int64 `protobuf:"varint,8,opt,name=forbid_expire,json=forbidExpire,proto3" json:"forbid_expire,omitempty"`
Created int64 `protobuf:"varint,9,opt,name=created,proto3" json:"created,omitempty"` // 创建时间
}
func (x *GmsGameAccount) Reset() {
*x = GmsGameAccount{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[8]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsGameAccount) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsGameAccount) ProtoMessage() {}
func (x *GmsGameAccount) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[8]
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 GmsGameAccount.ProtoReflect.Descriptor instead.
func (*GmsGameAccount) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{8}
}
func (x *GmsGameAccount) GetUid() int32 {
if x != nil {
return x.Uid
}
return 0
}
func (x *GmsGameAccount) GetAccount() string {
if x != nil {
return x.Account
}
return ""
}
func (x *GmsGameAccount) GetPwd() string {
if x != nil {
return x.Pwd
}
return ""
}
func (x *GmsGameAccount) GetPhone() string {
if x != nil {
return x.Phone
}
return ""
}
func (x *GmsGameAccount) GetLoginType() int32 {
if x != nil {
return x.LoginType
}
return 0
}
func (x *GmsGameAccount) GetRegPackageType() int32 {
if x != nil {
return x.RegPackageType
}
return 0
}
func (x *GmsGameAccount) GetIsForbid() bool {
if x != nil {
return x.IsForbid
}
return false
}
func (x *GmsGameAccount) GetForbidExpire() int64 {
if x != nil {
return x.ForbidExpire
}
return 0
}
func (x *GmsGameAccount) GetCreated() int64 {
if x != nil {
return x.Created
}
return 0
}
// 游戏角色
type GmsGameRole struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
Uid int32 `protobuf:"varint,2,opt,name=uid,proto3" json:"uid,omitempty"` // 账号ID
Rid int32 `protobuf:"varint,3,opt,name=rid,proto3" json:"rid,omitempty"` // 角色ID[主键]
ServId int32 `protobuf:"varint,4,opt,name=serv_id,json=servId,proto3" json:"serv_id,omitempty"` // 服务器Id
RegPackageType int32 `protobuf:"varint,5,opt,name=reg_package_type,json=regPackageType,proto3" json:"reg_package_type,omitempty"` // 注册的包类型
RoleName string `protobuf:"bytes,6,opt,name=role_name,json=roleName,proto3" json:"role_name,omitempty"` // 角色昵称
RoleLv int32 `protobuf:"varint,7,opt,name=role_lv,json=roleLv,proto3" json:"role_lv,omitempty"` // 角色等级
VipLv int32 `protobuf:"varint,8,opt,name=vip_lv,json=vipLv,proto3" json:"vip_lv,omitempty"` // VIP等级
HisMaxCe int64 `protobuf:"varint,9,opt,name=his_max_ce,json=hisMaxCe,proto3" json:"his_max_ce,omitempty"` // 历史最高战力
LoginDays int32 `protobuf:"varint,10,opt,name=login_days,json=loginDays,proto3" json:"login_days,omitempty"` // 累计登录次数
RechargeDays int32 `protobuf:"varint,11,opt,name=recharge_days,json=rechargeDays,proto3" json:"recharge_days,omitempty"` // 累积充值天数
InviteCode string `protobuf:"bytes,12,opt,name=invite_code,json=inviteCode,proto3" json:"invite_code,omitempty"` // 邀请码
FromInviteCode string `protobuf:"bytes,13,opt,name=from_invite_code,json=fromInviteCode,proto3" json:"from_invite_code,omitempty"` // 邀请人邀请码
LastRechargeTs int64 `protobuf:"varint,14,opt,name=last_recharge_ts,json=lastRechargeTs,proto3" json:"last_recharge_ts,omitempty"` // 上次充值时间戳
LastLoginIp string `protobuf:"bytes,15,opt,name=last_login_ip,json=lastLoginIp,proto3" json:"last_login_ip,omitempty"` // 上次登陆IP
GuildId int64 `protobuf:"varint,16,opt,name=guild_id,json=guildId,proto3" json:"guild_id,omitempty"` // 协会Id
GuildName string `protobuf:"bytes,17,opt,name=guild_name,json=guildName,proto3" json:"guild_name,omitempty"` // 协会名称
LastLoginTime int64 `protobuf:"varint,18,opt,name=last_login_time,json=lastLoginTime,proto3" json:"last_login_time,omitempty"` // 上次登陆时间
Created int64 `protobuf:"varint,19,opt,name=created,proto3" json:"created,omitempty"` // 创建时间
ChannelId int64 `protobuf:"varint,20,opt,name=channel_id,json=channelId,proto3" json:"channel_id,omitempty"` // 渠道id
}
func (x *GmsGameRole) Reset() {
*x = GmsGameRole{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[9]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsGameRole) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsGameRole) ProtoMessage() {}
func (x *GmsGameRole) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_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 GmsGameRole.ProtoReflect.Descriptor instead.
func (*GmsGameRole) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{9}
}
func (x *GmsGameRole) GetId() int64 {
if x != nil {
return x.Id
}
return 0
}
func (x *GmsGameRole) GetUid() int32 {
if x != nil {
return x.Uid
}
return 0
}
func (x *GmsGameRole) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GmsGameRole) GetServId() int32 {
if x != nil {
return x.ServId
}
return 0
}
func (x *GmsGameRole) GetRegPackageType() int32 {
if x != nil {
return x.RegPackageType
}
return 0
}
func (x *GmsGameRole) GetRoleName() string {
if x != nil {
return x.RoleName
}
return ""
}
func (x *GmsGameRole) GetRoleLv() int32 {
if x != nil {
return x.RoleLv
}
return 0
}
func (x *GmsGameRole) GetVipLv() int32 {
if x != nil {
return x.VipLv
}
return 0
}
func (x *GmsGameRole) GetHisMaxCe() int64 {
if x != nil {
return x.HisMaxCe
}
return 0
}
func (x *GmsGameRole) GetLoginDays() int32 {
if x != nil {
return x.LoginDays
}
return 0
}
func (x *GmsGameRole) GetRechargeDays() int32 {
if x != nil {
return x.RechargeDays
}
return 0
}
func (x *GmsGameRole) GetInviteCode() string {
if x != nil {
return x.InviteCode
}
return ""
}
func (x *GmsGameRole) GetFromInviteCode() string {
if x != nil {
return x.FromInviteCode
}
return ""
}
func (x *GmsGameRole) GetLastRechargeTs() int64 {
if x != nil {
return x.LastRechargeTs
}
return 0
}
func (x *GmsGameRole) GetLastLoginIp() string {
if x != nil {
return x.LastLoginIp
}
return ""
}
func (x *GmsGameRole) GetGuildId() int64 {
if x != nil {
return x.GuildId
}
return 0
}
func (x *GmsGameRole) GetGuildName() string {
if x != nil {
return x.GuildName
}
return ""
}
func (x *GmsGameRole) GetLastLoginTime() int64 {
if x != nil {
return x.LastLoginTime
}
return 0
}
func (x *GmsGameRole) GetCreated() int64 {
if x != nil {
return x.Created
}
return 0
}
func (x *GmsGameRole) GetChannelId() int64 {
if x != nil {
return x.ChannelId
}
return 0
}
// 后台日志
type GmsLog struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
LogType int32 `protobuf:"varint,1,opt,name=log_type,json=logType,proto3" json:"log_type,omitempty"` // 日志类型
LogInfo string `protobuf:"bytes,2,opt,name=log_info,json=logInfo,proto3" json:"log_info,omitempty"` // 日志内容
IsRead bool `protobuf:"varint,3,opt,name=is_read,json=isRead,proto3" json:"is_read,omitempty"` // 是否已读
CreateTime int64 `protobuf:"varint,4,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` // 创建时间
}
func (x *GmsLog) Reset() {
*x = GmsLog{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[10]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsLog) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsLog) ProtoMessage() {}
func (x *GmsLog) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_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 GmsLog.ProtoReflect.Descriptor instead.
func (*GmsLog) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{10}
}
func (x *GmsLog) GetLogType() int32 {
if x != nil {
return x.LogType
}
return 0
}
func (x *GmsLog) GetLogInfo() string {
if x != nil {
return x.LogInfo
}
return ""
}
func (x *GmsLog) GetIsRead() bool {
if x != nil {
return x.IsRead
}
return false
}
func (x *GmsLog) GetCreateTime() int64 {
if x != nil {
return x.CreateTime
}
return 0
}
// 游戏登录流程的数据采集信息
type GmsLogDcrLoginStep struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
PackageType int32 `protobuf:"varint,1,opt,name=package_type,json=packageType,proto3" json:"package_type,omitempty"` // 包类型
LoginType int32 `protobuf:"varint,2,opt,name=login_type,json=loginType,proto3" json:"login_type,omitempty"` // 登录类型
Platform string `protobuf:"bytes,3,opt,name=platform,proto3" json:"platform,omitempty"` // 平台 ios、windo
Uuid string `protobuf:"bytes,4,opt,name=uuid,proto3" json:"uuid,omitempty"` // 设备唯一ID
ServId int32 `protobuf:"varint,5,opt,name=serv_id,json=servId,proto3" json:"serv_id,omitempty"` // 游戏服务器唯一ID
Rid int32 `protobuf:"varint,6,opt,name=rid,proto3" json:"rid,omitempty"` // 角色ID
Step int32 `protobuf:"varint,7,opt,name=step,proto3" json:"step,omitempty"` // 步骤
CreateTime int64 `protobuf:"varint,8,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` // 时间戳
Ip string `protobuf:"bytes,9,opt,name=ip,proto3" json:"ip,omitempty"` // IP
Msg string `protobuf:"bytes,10,opt,name=msg,proto3" json:"msg,omitempty"` // 消息内容
}
func (x *GmsLogDcrLoginStep) Reset() {
*x = GmsLogDcrLoginStep{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[11]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsLogDcrLoginStep) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsLogDcrLoginStep) ProtoMessage() {}
func (x *GmsLogDcrLoginStep) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[11]
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 GmsLogDcrLoginStep.ProtoReflect.Descriptor instead.
func (*GmsLogDcrLoginStep) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{11}
}
func (x *GmsLogDcrLoginStep) GetPackageType() int32 {
if x != nil {
return x.PackageType
}
return 0
}
func (x *GmsLogDcrLoginStep) GetLoginType() int32 {
if x != nil {
return x.LoginType
}
return 0
}
func (x *GmsLogDcrLoginStep) GetPlatform() string {
if x != nil {
return x.Platform
}
return ""
}
func (x *GmsLogDcrLoginStep) GetUuid() string {
if x != nil {
return x.Uuid
}
return ""
}
func (x *GmsLogDcrLoginStep) GetServId() int32 {
if x != nil {
return x.ServId
}
return 0
}
func (x *GmsLogDcrLoginStep) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GmsLogDcrLoginStep) GetStep() int32 {
if x != nil {
return x.Step
}
return 0
}
func (x *GmsLogDcrLoginStep) GetCreateTime() int64 {
if x != nil {
return x.CreateTime
}
return 0
}
func (x *GmsLogDcrLoginStep) GetIp() string {
if x != nil {
return x.Ip
}
return ""
}
func (x *GmsLogDcrLoginStep) GetMsg() string {
if x != nil {
return x.Msg
}
return ""
}
// 邀请码
type GmsAppInvite struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"` // 角色Id [联合主键]
InviteRid int32 `protobuf:"varint,2,opt,name=invite_rid,json=inviteRid,proto3" json:"invite_rid,omitempty"` // 邀请的角色ID [联合主键]
InviteTime int64 `protobuf:"varint,3,opt,name=invite_time,json=inviteTime,proto3" json:"invite_time,omitempty"` // 邀请时间
}
func (x *GmsAppInvite) Reset() {
*x = GmsAppInvite{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[12]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppInvite) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppInvite) ProtoMessage() {}
func (x *GmsAppInvite) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[12]
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 GmsAppInvite.ProtoReflect.Descriptor instead.
func (*GmsAppInvite) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{12}
}
func (x *GmsAppInvite) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GmsAppInvite) GetInviteRid() int32 {
if x != nil {
return x.InviteRid
}
return 0
}
func (x *GmsAppInvite) GetInviteTime() int64 {
if x != nil {
return x.InviteTime
}
return 0
}
// 游戏角色每日首次登陆数据采集
type GmsLogDcrDayFirstLogin struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Rid int32 `protobuf:"varint,1,opt,name=rid,proto3" json:"rid,omitempty"` // 角色ID
ServId int32 `protobuf:"varint,2,opt,name=serv_id,json=servId,proto3" json:"serv_id,omitempty"` // 游戏服务器唯一ID
CreateTime int64 `protobuf:"varint,3,opt,name=create_time,json=createTime,proto3" json:"create_time,omitempty"` // 创建时间
}
func (x *GmsLogDcrDayFirstLogin) Reset() {
*x = GmsLogDcrDayFirstLogin{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[13]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsLogDcrDayFirstLogin) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsLogDcrDayFirstLogin) ProtoMessage() {}
func (x *GmsLogDcrDayFirstLogin) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[13]
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 GmsLogDcrDayFirstLogin.ProtoReflect.Descriptor instead.
func (*GmsLogDcrDayFirstLogin) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{13}
}
func (x *GmsLogDcrDayFirstLogin) GetRid() int32 {
if x != nil {
return x.Rid
}
return 0
}
func (x *GmsLogDcrDayFirstLogin) GetServId() int32 {
if x != nil {
return x.ServId
}
return 0
}
func (x *GmsLogDcrDayFirstLogin) GetCreateTime() int64 {
if x != nil {
return x.CreateTime
}
return 0
}
// 渠道参数配置
type GmsAppSdkCfg struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"` // 配置Id [主键]
SdkType int32 `protobuf:"varint,2,opt,name=sdk_type,json=sdkType,proto3" json:"sdk_type,omitempty"` // Sdk类型
SdkAppId string `protobuf:"bytes,3,opt,name=sdk_app_id,json=sdkAppId,proto3" json:"sdk_app_id,omitempty"` // Sdk AppId
SdkKey1 string `protobuf:"bytes,4,opt,name=sdk_key1,json=sdkKey1,proto3" json:"sdk_key1,omitempty"` // Sdk Key1
SdkKey2 string `protobuf:"bytes,5,opt,name=sdk_key2,json=sdkKey2,proto3" json:"sdk_key2,omitempty"` // Sdk Key2
SdkKey3 string `protobuf:"bytes,6,opt,name=sdk_key3,json=sdkKey3,proto3" json:"sdk_key3,omitempty"` // Sdk Key3
SdkKey4 string `protobuf:"bytes,7,opt,name=sdk_key4,json=sdkKey4,proto3" json:"sdk_key4,omitempty"` // Sdk Key4
}
func (x *GmsAppSdkCfg) Reset() {
*x = GmsAppSdkCfg{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[14]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppSdkCfg) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppSdkCfg) ProtoMessage() {}
func (x *GmsAppSdkCfg) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[14]
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 GmsAppSdkCfg.ProtoReflect.Descriptor instead.
func (*GmsAppSdkCfg) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{14}
}
func (x *GmsAppSdkCfg) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
func (x *GmsAppSdkCfg) GetSdkType() int32 {
if x != nil {
return x.SdkType
}
return 0
}
func (x *GmsAppSdkCfg) GetSdkAppId() string {
if x != nil {
return x.SdkAppId
}
return ""
}
func (x *GmsAppSdkCfg) GetSdkKey1() string {
if x != nil {
return x.SdkKey1
}
return ""
}
func (x *GmsAppSdkCfg) GetSdkKey2() string {
if x != nil {
return x.SdkKey2
}
return ""
}
func (x *GmsAppSdkCfg) GetSdkKey3() string {
if x != nil {
return x.SdkKey3
}
return ""
}
func (x *GmsAppSdkCfg) GetSdkKey4() string {
if x != nil {
return x.SdkKey4
}
return ""
}
// 联盟id
type GmsLeagueId struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
}
func (x *GmsLeagueId) Reset() {
*x = GmsLeagueId{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[15]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsLeagueId) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsLeagueId) ProtoMessage() {}
func (x *GmsLeagueId) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[15]
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 GmsLeagueId.ProtoReflect.Descriptor instead.
func (*GmsLeagueId) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{15}
}
func (x *GmsLeagueId) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
// 联盟名字
type GmsLeagueName struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Name string `protobuf:"bytes,1,opt,name=name,proto3" json:"name,omitempty"`
}
func (x *GmsLeagueName) Reset() {
*x = GmsLeagueName{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[16]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsLeagueName) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsLeagueName) ProtoMessage() {}
func (x *GmsLeagueName) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[16]
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 GmsLeagueName.ProtoReflect.Descriptor instead.
func (*GmsLeagueName) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{16}
}
func (x *GmsLeagueName) GetName() string {
if x != nil {
return x.Name
}
return ""
}
type GmsGameAlertSettings struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
MailSrc string `protobuf:"bytes,2,opt,name=mail_src,json=mailSrc,proto3" json:"mail_src,omitempty"`
SrcToken string `protobuf:"bytes,3,opt,name=src_token,json=srcToken,proto3" json:"src_token,omitempty"`
MailDst string `protobuf:"bytes,4,opt,name=mail_dst,json=mailDst,proto3" json:"mail_dst,omitempty"`
Smtp string `protobuf:"bytes,5,opt,name=smtp,proto3" json:"smtp,omitempty"`
}
func (x *GmsGameAlertSettings) Reset() {
*x = GmsGameAlertSettings{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[17]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsGameAlertSettings) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsGameAlertSettings) ProtoMessage() {}
func (x *GmsGameAlertSettings) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[17]
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 GmsGameAlertSettings.ProtoReflect.Descriptor instead.
func (*GmsGameAlertSettings) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{17}
}
func (x *GmsGameAlertSettings) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
func (x *GmsGameAlertSettings) GetMailSrc() string {
if x != nil {
return x.MailSrc
}
return ""
}
func (x *GmsGameAlertSettings) GetSrcToken() string {
if x != nil {
return x.SrcToken
}
return ""
}
func (x *GmsGameAlertSettings) GetMailDst() string {
if x != nil {
return x.MailDst
}
return ""
}
func (x *GmsGameAlertSettings) GetSmtp() string {
if x != nil {
return x.Smtp
}
return ""
}
type GmsAppProductSdk struct {
state protoimpl.MessageState
sizeCache protoimpl.SizeCache
unknownFields protoimpl.UnknownFields
Id int32 `protobuf:"varint,1,opt,name=id,proto3" json:"id,omitempty"`
SdkProductId string `protobuf:"bytes,2,opt,name=sdk_product_id,json=sdkProductId,proto3" json:"sdk_product_id,omitempty"`
Amount string `protobuf:"bytes,3,opt,name=amount,proto3" json:"amount,omitempty"`
Remark string `protobuf:"bytes,4,opt,name=remark,proto3" json:"remark,omitempty"`
Type int32 `protobuf:"varint,5,opt,name=type,proto3" json:"type,omitempty"`
Order int32 `protobuf:"varint,6,opt,name=order,proto3" json:"order,omitempty"`
}
func (x *GmsAppProductSdk) Reset() {
*x = GmsAppProductSdk{}
if protoimpl.UnsafeEnabled {
mi := &file_gms_center_proto_msgTypes[18]
ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
ms.StoreMessageInfo(mi)
}
}
func (x *GmsAppProductSdk) String() string {
return protoimpl.X.MessageStringOf(x)
}
func (*GmsAppProductSdk) ProtoMessage() {}
func (x *GmsAppProductSdk) ProtoReflect() protoreflect.Message {
mi := &file_gms_center_proto_msgTypes[18]
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 GmsAppProductSdk.ProtoReflect.Descriptor instead.
func (*GmsAppProductSdk) Descriptor() ([]byte, []int) {
return file_gms_center_proto_rawDescGZIP(), []int{18}
}
func (x *GmsAppProductSdk) GetId() int32 {
if x != nil {
return x.Id
}
return 0
}
func (x *GmsAppProductSdk) GetSdkProductId() string {
if x != nil {
return x.SdkProductId
}
return ""
}
func (x *GmsAppProductSdk) GetAmount() string {
if x != nil {
return x.Amount
}
return ""
}
func (x *GmsAppProductSdk) GetRemark() string {
if x != nil {
return x.Remark
}
return ""
}
func (x *GmsAppProductSdk) GetType() int32 {
if x != nil {
return x.Type
}
return 0
}
func (x *GmsAppProductSdk) GetOrder() int32 {
if x != nil {
return x.Order
}
return 0
}
var File_gms_center_proto protoreflect.FileDescriptor
var file_gms_center_proto_rawDesc = []byte{
0x0a, 0x10, 0x67, 0x6d, 0x73, 0x5f, 0x63, 0x65, 0x6e, 0x74, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f,
0x74, 0x6f, 0x12, 0x07, 0x67, 0x75, 0x64, 0x62, 0x67, 0x6d, 0x73, 0x22, 0xdd, 0x02, 0x0a, 0x17,
0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x68, 0x6f, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
0x74, 0x65, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x62, 0x61, 0x73, 0x65, 0x5f,
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x62, 0x61, 0x73, 0x65, 0x49, 0x64,
0x12, 0x1b, 0x0a, 0x09, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
0x01, 0x28, 0x09, 0x52, 0x08, 0x62, 0x61, 0x73, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2c, 0x0a,
0x12, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05, 0x52, 0x10, 0x63, 0x6c, 0x69, 0x65, 0x6e,
0x74, 0x41, 0x70, 0x70, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x25, 0x0a, 0x0e, 0x63,
0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20,
0x01, 0x28, 0x05, 0x52, 0x0d, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x56, 0x65, 0x72, 0x73, 0x69,
0x6f, 0x6e, 0x12, 0x2a, 0x0a, 0x11, 0x61, 0x70, 0x70, 0x5f, 0x64, 0x6f, 0x77, 0x6e, 0x6c, 0x6f,
0x61, 0x64, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0f, 0x61,
0x70, 0x70, 0x44, 0x6f, 0x77, 0x6e, 0x6c, 0x6f, 0x61, 0x64, 0x41, 0x64, 0x64, 0x72, 0x12, 0x28,
0x0a, 0x10, 0x68, 0x6f, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x64, 0x64,
0x72, 0x31, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x68, 0x6f, 0x74, 0x55, 0x70, 0x64,
0x61, 0x74, 0x65, 0x41, 0x64, 0x64, 0x72, 0x31, 0x12, 0x28, 0x0a, 0x10, 0x68, 0x6f, 0x74, 0x5f,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x61, 0x64, 0x64, 0x72, 0x32, 0x18, 0x07, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0e, 0x68, 0x6f, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x41, 0x64, 0x64,
0x72, 0x32, 0x12, 0x37, 0x0a, 0x18, 0x68, 0x35, 0x5f, 0x63, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x5f,
0x75, 0x70, 0x64, 0x61, 0x74, 0x65, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x08,
0x20, 0x01, 0x28, 0x05, 0x52, 0x15, 0x68, 0x35, 0x43, 0x6c, 0x69, 0x65, 0x6e, 0x74, 0x55, 0x70,
0x64, 0x61, 0x74, 0x65, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x22, 0xa0, 0x02, 0x0a, 0x19,
0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x68, 0x6f, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
0x74, 0x65, 0x5f, 0x64, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x12, 0x17, 0x0a, 0x07, 0x62, 0x61, 0x73,
0x65, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x62, 0x61, 0x73, 0x65,
0x49, 0x64, 0x12, 0x22, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e,
0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x72, 0x65, 0x73, 0x46, 0x69,
0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2d, 0x0a, 0x13, 0x63, 0x61, 0x63, 0x68, 0x65, 0x5f,
0x72, 0x65, 0x73, 0x5f, 0x66, 0x69, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x10, 0x63, 0x61, 0x63, 0x68, 0x65, 0x52, 0x65, 0x73, 0x46, 0x69, 0x6c,
0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0c, 0x72, 0x65, 0x73, 0x5f, 0x66, 0x69, 0x6c,
0x65, 0x5f, 0x6d, 0x64, 0x35, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x72, 0x65, 0x73,
0x46, 0x69, 0x6c, 0x65, 0x4d, 0x64, 0x35, 0x12, 0x22, 0x0a, 0x0d, 0x72, 0x65, 0x73, 0x5f, 0x66,
0x69, 0x6c, 0x65, 0x5f, 0x73, 0x69, 0x7a, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
0x72, 0x65, 0x73, 0x46, 0x69, 0x6c, 0x65, 0x53, 0x69, 0x7a, 0x65, 0x12, 0x1f, 0x0a, 0x0b, 0x72,
0x65, 0x73, 0x5f, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05,
0x52, 0x0a, 0x72, 0x65, 0x73, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x12, 0x1b, 0x0a, 0x09,
0x73, 0x79, 0x6e, 0x63, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52,
0x08, 0x73, 0x79, 0x6e, 0x63, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x13, 0x0a, 0x05, 0x69, 0x73, 0x5f,
0x62, 0x67, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x04, 0x69, 0x73, 0x42, 0x67, 0x22, 0x5b,
0x0a, 0x12, 0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f,
0x74, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x79,
0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x54,
0x79, 0x70, 0x65, 0x12, 0x26, 0x0a, 0x0f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x6c, 0x6f,
0x67, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x22, 0xba, 0x02, 0x0a, 0x0e,
0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x6e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x12, 0x0e,
0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x12,
0x0a, 0x04, 0x69, 0x63, 0x6f, 0x6e, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x69, 0x63,
0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x5f, 0x7a, 0x68, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f,
0x6e, 0x74, 0x65, 0x6e, 0x74, 0x5a, 0x68, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x65,
0x6e, 0x74, 0x5f, 0x6a, 0x70, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e,
0x74, 0x65, 0x6e, 0x74, 0x4a, 0x70, 0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x6f, 0x6e, 0x74, 0x65, 0x6e,
0x74, 0x5f, 0x65, 0x6e, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x74,
0x65, 0x6e, 0x74, 0x45, 0x6e, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x74, 0x72, 0x5f, 0x74, 0x69, 0x6d,
0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x74, 0x72, 0x54, 0x69, 0x6d, 0x65,
0x12, 0x1d, 0x0a, 0x0a, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08,
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x62, 0x65, 0x67, 0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12,
0x19, 0x0a, 0x08, 0x65, 0x6e, 0x64, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28,
0x03, 0x52, 0x07, 0x65, 0x6e, 0x64, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x6c, 0x61,
0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6c, 0x61, 0x6e, 0x12, 0x12, 0x0a, 0x04,
0x73, 0x6f, 0x72, 0x74, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x73, 0x6f, 0x72, 0x74,
0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
0x52, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x22, 0xd1, 0x03, 0x0a, 0x0e, 0x67, 0x6d, 0x73,
0x5f, 0x61, 0x70, 0x70, 0x5f, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x73, 0x12, 0x19, 0x0a, 0x08, 0x6f,
0x72, 0x64, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6f,
0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x12, 0x20, 0x0a, 0x0c, 0x73, 0x64, 0x6b, 0x5f, 0x6f, 0x72,
0x64, 0x65, 0x72, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x73, 0x64,
0x6b, 0x4f, 0x72, 0x64, 0x65, 0x72, 0x49, 0x64, 0x12, 0x21, 0x0a, 0x0c, 0x72, 0x65, 0x63, 0x65,
0x69, 0x76, 0x65, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b,
0x72, 0x65, 0x63, 0x65, 0x69, 0x76, 0x65, 0x44, 0x61, 0x74, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x70,
0x61, 0x79, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x70,
0x61, 0x79, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
0x63, 0x79, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x63, 0x75, 0x72, 0x72, 0x65, 0x6e,
0x63, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x06, 0x20, 0x01,
0x28, 0x09, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61,
0x63, 0x6b, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
0x52, 0x0b, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x17, 0x0a,
0x07, 0x73, 0x65, 0x72, 0x76, 0x5f, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06,
0x73, 0x65, 0x72, 0x76, 0x49, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x09, 0x20,
0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x64, 0x6b, 0x5f,
0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0c, 0x73, 0x64, 0x6b, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x1d,
0x0a, 0x0a, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x0b, 0x20, 0x01,
0x28, 0x05, 0x52, 0x09, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x21, 0x0a,
0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x0c, 0x20,
0x01, 0x28, 0x05, 0x52, 0x0b, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73,
0x12, 0x23, 0x0a, 0x0d, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x4d, 0x65,
0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x69, 0x73, 0x5f, 0x73, 0x61, 0x6e, 0x64,
0x62, 0x6f, 0x78, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x08, 0x52, 0x09, 0x69, 0x73, 0x53, 0x61, 0x6e,
0x64, 0x62, 0x6f, 0x78, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x18, 0x0f,
0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x6f, 0x75, 0x72, 0x63, 0x65, 0x22, 0xe1, 0x03, 0x0a,
0x14, 0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x70, 0x61, 0x63,
0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x2a, 0x0a, 0x11, 0x70, 0x61, 0x63, 0x6b,
0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
0x01, 0x28, 0x09, 0x52, 0x0f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65,
0x4e, 0x61, 0x6d, 0x65, 0x12, 0x2b, 0x0a, 0x12, 0x68, 0x6f, 0x74, 0x5f, 0x75, 0x70, 0x64, 0x61,
0x74, 0x65, 0x5f, 0x62, 0x61, 0x73, 0x65, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x05,
0x52, 0x0f, 0x68, 0x6f, 0x74, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x42, 0x61, 0x73, 0x65, 0x49,
0x64, 0x12, 0x27, 0x0a, 0x0f, 0x72, 0x65, 0x76, 0x69, 0x65, 0x77, 0x5f, 0x76, 0x65, 0x72, 0x73,
0x69, 0x6f, 0x6e, 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x76, 0x69,
0x65, 0x77, 0x56, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x73, 0x12, 0x20, 0x0a, 0x0c, 0x73, 0x74,
0x72, 0x5f, 0x73, 0x65, 0x72, 0x76, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0a, 0x73, 0x74, 0x72, 0x53, 0x65, 0x72, 0x76, 0x49, 0x64, 0x73, 0x12, 0x24, 0x0a, 0x0e,
0x73, 0x74, 0x72, 0x5f, 0x6e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x06,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x72, 0x4e, 0x6f, 0x74, 0x69, 0x63, 0x65, 0x49,
0x64, 0x73, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x74, 0x72, 0x5f, 0x69, 0x6d, 0x67, 0x18, 0x07, 0x20,
0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x72, 0x49, 0x6d, 0x67, 0x12, 0x2d, 0x0a, 0x13, 0x69,
0x73, 0x5f, 0x73, 0x68, 0x6f, 0x77, 0x5f, 0x68, 0x35, 0x5f, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72,
0x67, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x08, 0x52, 0x10, 0x69, 0x73, 0x53, 0x68, 0x6f, 0x77,
0x48, 0x35, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x69, 0x73,
0x5f, 0x6f, 0x66, 0x66, 0x5f, 0x61, 0x70, 0x70, 0x18, 0x09, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08,
0x69, 0x73, 0x4f, 0x66, 0x66, 0x41, 0x70, 0x70, 0x12, 0x37, 0x0a, 0x18, 0x69, 0x73, 0x5f, 0x68,
0x69, 0x64, 0x65, 0x5f, 0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x5f, 0x72, 0x65, 0x63, 0x68,
0x61, 0x72, 0x67, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x08, 0x52, 0x15, 0x69, 0x73, 0x48, 0x69,
0x64, 0x65, 0x44, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67,
0x65, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0b, 0x20, 0x01, 0x28,
0x09, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x25, 0x0a, 0x0f, 0x73, 0x74, 0x72,
0x5f, 0x73, 0x64, 0x6b, 0x5f, 0x63, 0x66, 0x67, 0x5f, 0x69, 0x64, 0x73, 0x18, 0x0c, 0x20, 0x01,
0x28, 0x09, 0x52, 0x0c, 0x73, 0x74, 0x72, 0x53, 0x64, 0x6b, 0x43, 0x66, 0x67, 0x49, 0x64, 0x73,
0x22, 0xa2, 0x02, 0x0a, 0x0c, 0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x65, 0x72,
0x76, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x5f, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01,
0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76, 0x49, 0x64, 0x12, 0x1b, 0x0a, 0x09, 0x73, 0x65,
0x72, 0x76, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73,
0x65, 0x72, 0x76, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x67, 0x61, 0x6d, 0x65, 0x5f,
0x69, 0x70, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x67, 0x61, 0x6d, 0x65, 0x49, 0x70,
0x12, 0x1b, 0x0a, 0x09, 0x67, 0x61, 0x6d, 0x65, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x04, 0x20,
0x01, 0x28, 0x05, 0x52, 0x08, 0x67, 0x61, 0x6d, 0x65, 0x50, 0x6f, 0x72, 0x74, 0x12, 0x22, 0x0a,
0x0d, 0x67, 0x61, 0x6d, 0x65, 0x5f, 0x72, 0x70, 0x63, 0x5f, 0x70, 0x6f, 0x72, 0x74, 0x18, 0x05,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x67, 0x61, 0x6d, 0x65, 0x52, 0x70, 0x63, 0x50, 0x6f, 0x72,
0x74, 0x12, 0x1b, 0x0a, 0x09, 0x6f, 0x70, 0x65, 0x6e, 0x5f, 0x64, 0x61, 0x74, 0x65, 0x18, 0x06,
0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x6f, 0x70, 0x65, 0x6e, 0x44, 0x61, 0x74, 0x65, 0x12, 0x21,
0x0a, 0x0c, 0x73, 0x74, 0x6f, 0x70, 0x5f, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x18, 0x07,
0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x73, 0x74, 0x6f, 0x70, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67,
0x65, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6f, 0x72, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x05, 0x52,
0x04, 0x73, 0x6f, 0x72, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
0x09, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x16, 0x0a,
0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72,
0x65, 0x6d, 0x61, 0x72, 0x6b, 0x22, 0x7e, 0x0a, 0x12, 0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70,
0x5f, 0x77, 0x68, 0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x26, 0x0a, 0x0f, 0x77,
0x68, 0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x73, 0x74, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01,
0x20, 0x01, 0x28, 0x05, 0x52, 0x0d, 0x77, 0x68, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x54,
0x79, 0x70, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x77, 0x68, 0x69, 0x74, 0x65, 0x5f, 0x6c, 0x69, 0x73,
0x74, 0x5f, 0x76, 0x61, 0x6c, 0x75, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x77,
0x68, 0x69, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x56, 0x61, 0x6c, 0x75, 0x65, 0x12, 0x16, 0x0a,
0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x72,
0x65, 0x6d, 0x61, 0x72, 0x6b, 0x22, 0x8b, 0x02, 0x0a, 0x10, 0x67, 0x6d, 0x73, 0x5f, 0x67, 0x61,
0x6d, 0x65, 0x5f, 0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69,
0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07,
0x61, 0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x61,
0x63, 0x63, 0x6f, 0x75, 0x6e, 0x74, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x77, 0x64, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x03, 0x70, 0x77, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x70, 0x68, 0x6f, 0x6e,
0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x70, 0x68, 0x6f, 0x6e, 0x65, 0x12, 0x1d,
0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01,
0x28, 0x05, 0x52, 0x09, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x28, 0x0a,
0x10, 0x72, 0x65, 0x67, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x5f, 0x74, 0x79, 0x70,
0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65, 0x67, 0x50, 0x61, 0x63, 0x6b,
0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09, 0x69, 0x73, 0x5f, 0x66, 0x6f,
0x72, 0x62, 0x69, 0x64, 0x18, 0x07, 0x20, 0x01, 0x28, 0x08, 0x52, 0x08, 0x69, 0x73, 0x46, 0x6f,
0x72, 0x62, 0x69, 0x64, 0x12, 0x23, 0x0a, 0x0d, 0x66, 0x6f, 0x72, 0x62, 0x69, 0x64, 0x5f, 0x65,
0x78, 0x70, 0x69, 0x72, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x66, 0x6f, 0x72,
0x62, 0x69, 0x64, 0x45, 0x78, 0x70, 0x69, 0x72, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x64, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x63, 0x72, 0x65, 0x61,
0x74, 0x65, 0x64, 0x22, 0xe9, 0x04, 0x0a, 0x0d, 0x67, 0x6d, 0x73, 0x5f, 0x67, 0x61, 0x6d, 0x65,
0x5f, 0x72, 0x6f, 0x6c, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x75, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01,
0x28, 0x05, 0x52, 0x03, 0x75, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x03,
0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x65, 0x72,
0x76, 0x5f, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76,
0x49, 0x64, 0x12, 0x28, 0x0a, 0x10, 0x72, 0x65, 0x67, 0x5f, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67,
0x65, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0e, 0x72, 0x65,
0x67, 0x50, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1b, 0x0a, 0x09,
0x72, 0x6f, 0x6c, 0x65, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52,
0x08, 0x72, 0x6f, 0x6c, 0x65, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x17, 0x0a, 0x07, 0x72, 0x6f, 0x6c,
0x65, 0x5f, 0x6c, 0x76, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x72, 0x6f, 0x6c, 0x65,
0x4c, 0x76, 0x12, 0x15, 0x0a, 0x06, 0x76, 0x69, 0x70, 0x5f, 0x6c, 0x76, 0x18, 0x08, 0x20, 0x01,
0x28, 0x05, 0x52, 0x05, 0x76, 0x69, 0x70, 0x4c, 0x76, 0x12, 0x1c, 0x0a, 0x0a, 0x68, 0x69, 0x73,
0x5f, 0x6d, 0x61, 0x78, 0x5f, 0x63, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08, 0x68,
0x69, 0x73, 0x4d, 0x61, 0x78, 0x43, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6c, 0x6f, 0x67,
0x69, 0x6e, 0x44, 0x61, 0x79, 0x73, 0x12, 0x23, 0x0a, 0x0d, 0x72, 0x65, 0x63, 0x68, 0x61, 0x72,
0x67, 0x65, 0x5f, 0x64, 0x61, 0x79, 0x73, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0c, 0x72,
0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x44, 0x61, 0x79, 0x73, 0x12, 0x1f, 0x0a, 0x0b, 0x69,
0x6e, 0x76, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09,
0x52, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x10,
0x66, 0x72, 0x6f, 0x6d, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x5f, 0x63, 0x6f, 0x64, 0x65,
0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x66, 0x72, 0x6f, 0x6d, 0x49, 0x6e, 0x76, 0x69,
0x74, 0x65, 0x43, 0x6f, 0x64, 0x65, 0x12, 0x28, 0x0a, 0x10, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x72,
0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x5f, 0x74, 0x73, 0x18, 0x0e, 0x20, 0x01, 0x28, 0x03,
0x52, 0x0e, 0x6c, 0x61, 0x73, 0x74, 0x52, 0x65, 0x63, 0x68, 0x61, 0x72, 0x67, 0x65, 0x54, 0x73,
0x12, 0x22, 0x0a, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x69,
0x70, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67,
0x69, 0x6e, 0x49, 0x70, 0x12, 0x19, 0x0a, 0x08, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x69, 0x64,
0x18, 0x10, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x49, 0x64, 0x12,
0x1d, 0x0a, 0x0a, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x11, 0x20,
0x01, 0x28, 0x09, 0x52, 0x09, 0x67, 0x75, 0x69, 0x6c, 0x64, 0x4e, 0x61, 0x6d, 0x65, 0x12, 0x26,
0x0a, 0x0f, 0x6c, 0x61, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x5f, 0x74, 0x69, 0x6d,
0x65, 0x18, 0x12, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x61, 0x73, 0x74, 0x4c, 0x6f, 0x67,
0x69, 0x6e, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
0x64, 0x18, 0x13, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x64,
0x12, 0x1d, 0x0a, 0x0a, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x5f, 0x69, 0x64, 0x18, 0x14,
0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x63, 0x68, 0x61, 0x6e, 0x6e, 0x65, 0x6c, 0x49, 0x64, 0x22,
0x79, 0x0a, 0x07, 0x67, 0x6d, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x6f,
0x67, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07, 0x6c, 0x6f,
0x67, 0x54, 0x79, 0x70, 0x65, 0x12, 0x19, 0x0a, 0x08, 0x6c, 0x6f, 0x67, 0x5f, 0x69, 0x6e, 0x66,
0x6f, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6c, 0x6f, 0x67, 0x49, 0x6e, 0x66, 0x6f,
0x12, 0x17, 0x0a, 0x07, 0x69, 0x73, 0x5f, 0x72, 0x65, 0x61, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28,
0x08, 0x52, 0x06, 0x69, 0x73, 0x52, 0x65, 0x61, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a,
0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x8c, 0x02, 0x0a, 0x16, 0x67,
0x6d, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x63, 0x72, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e,
0x5f, 0x73, 0x74, 0x65, 0x70, 0x12, 0x21, 0x0a, 0x0c, 0x70, 0x61, 0x63, 0x6b, 0x61, 0x67, 0x65,
0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x0b, 0x70, 0x61, 0x63,
0x6b, 0x61, 0x67, 0x65, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1d, 0x0a, 0x0a, 0x6c, 0x6f, 0x67, 0x69,
0x6e, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x09, 0x6c, 0x6f,
0x67, 0x69, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66,
0x6f, 0x72, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x6c, 0x61, 0x74, 0x66,
0x6f, 0x72, 0x6d, 0x12, 0x12, 0x0a, 0x04, 0x75, 0x75, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
0x09, 0x52, 0x04, 0x75, 0x75, 0x69, 0x64, 0x12, 0x17, 0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x5f,
0x69, 0x64, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x06, 0x73, 0x65, 0x72, 0x76, 0x49, 0x64,
0x12, 0x10, 0x0a, 0x03, 0x72, 0x69, 0x64, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72,
0x69, 0x64, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x74, 0x65, 0x70, 0x18, 0x07, 0x20, 0x01, 0x28, 0x05,
0x52, 0x04, 0x73, 0x74, 0x65, 0x70, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65,
0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65,
0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x70, 0x18, 0x09, 0x20,
0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x70, 0x12, 0x10, 0x0a, 0x03, 0x6d, 0x73, 0x67, 0x18, 0x0a,
0x20, 0x01, 0x28, 0x09, 0x52, 0x03, 0x6d, 0x73, 0x67, 0x22, 0x62, 0x0a, 0x0e, 0x67, 0x6d, 0x73,
0x5f, 0x61, 0x70, 0x70, 0x5f, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x72,
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x1d, 0x0a,
0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x5f, 0x72, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28,
0x05, 0x52, 0x09, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x52, 0x69, 0x64, 0x12, 0x1f, 0x0a, 0x0b,
0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
0x03, 0x52, 0x0a, 0x69, 0x6e, 0x76, 0x69, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x69, 0x0a,
0x1b, 0x67, 0x6d, 0x73, 0x5f, 0x6c, 0x6f, 0x67, 0x5f, 0x64, 0x63, 0x72, 0x5f, 0x64, 0x61, 0x79,
0x5f, 0x66, 0x69, 0x72, 0x73, 0x74, 0x5f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x10, 0x0a, 0x03,
0x72, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x03, 0x72, 0x69, 0x64, 0x12, 0x17,
0x0a, 0x07, 0x73, 0x65, 0x72, 0x76, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52,
0x06, 0x73, 0x65, 0x72, 0x76, 0x49, 0x64, 0x12, 0x1f, 0x0a, 0x0b, 0x63, 0x72, 0x65, 0x61, 0x74,
0x65, 0x5f, 0x74, 0x69, 0x6d, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72,
0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x22, 0xc6, 0x01, 0x0a, 0x0f, 0x67, 0x6d, 0x73,
0x5f, 0x61, 0x70, 0x70, 0x5f, 0x73, 0x64, 0x6b, 0x5f, 0x63, 0x66, 0x67, 0x12, 0x0e, 0x0a, 0x02,
0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08,
0x73, 0x64, 0x6b, 0x5f, 0x74, 0x79, 0x70, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x05, 0x52, 0x07,
0x73, 0x64, 0x6b, 0x54, 0x79, 0x70, 0x65, 0x12, 0x1c, 0x0a, 0x0a, 0x73, 0x64, 0x6b, 0x5f, 0x61,
0x70, 0x70, 0x5f, 0x69, 0x64, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x64, 0x6b,
0x41, 0x70, 0x70, 0x49, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x64, 0x6b, 0x5f, 0x6b, 0x65, 0x79,
0x31, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x64, 0x6b, 0x4b, 0x65, 0x79, 0x31,
0x12, 0x19, 0x0a, 0x08, 0x73, 0x64, 0x6b, 0x5f, 0x6b, 0x65, 0x79, 0x32, 0x18, 0x05, 0x20, 0x01,
0x28, 0x09, 0x52, 0x07, 0x73, 0x64, 0x6b, 0x4b, 0x65, 0x79, 0x32, 0x12, 0x19, 0x0a, 0x08, 0x73,
0x64, 0x6b, 0x5f, 0x6b, 0x65, 0x79, 0x33, 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73,
0x64, 0x6b, 0x4b, 0x65, 0x79, 0x33, 0x12, 0x19, 0x0a, 0x08, 0x73, 0x64, 0x6b, 0x5f, 0x6b, 0x65,
0x79, 0x34, 0x18, 0x07, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x73, 0x64, 0x6b, 0x4b, 0x65, 0x79,
0x34, 0x22, 0x1f, 0x0a, 0x0d, 0x67, 0x6d, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x67, 0x75, 0x65, 0x5f,
0x69, 0x64, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05, 0x52, 0x02,
0x69, 0x64, 0x22, 0x25, 0x0a, 0x0f, 0x67, 0x6d, 0x73, 0x5f, 0x6c, 0x65, 0x61, 0x67, 0x75, 0x65,
0x5f, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x04, 0x6e, 0x61, 0x6d, 0x65, 0x22, 0x90, 0x01, 0x0a, 0x17, 0x67, 0x6d,
0x73, 0x5f, 0x67, 0x61, 0x6d, 0x65, 0x5f, 0x61, 0x6c, 0x65, 0x72, 0x74, 0x5f, 0x73, 0x65, 0x74,
0x74, 0x69, 0x6e, 0x67, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
0x05, 0x52, 0x02, 0x69, 0x64, 0x12, 0x19, 0x0a, 0x08, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x73, 0x72,
0x63, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x61, 0x69, 0x6c, 0x53, 0x72, 0x63,
0x12, 0x1b, 0x0a, 0x09, 0x73, 0x72, 0x63, 0x5f, 0x74, 0x6f, 0x6b, 0x65, 0x6e, 0x18, 0x03, 0x20,
0x01, 0x28, 0x09, 0x52, 0x08, 0x73, 0x72, 0x63, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x12, 0x19, 0x0a,
0x08, 0x6d, 0x61, 0x69, 0x6c, 0x5f, 0x64, 0x73, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52,
0x07, 0x6d, 0x61, 0x69, 0x6c, 0x44, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x73, 0x6d, 0x74, 0x70,
0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x73, 0x6d, 0x74, 0x70, 0x22, 0xa5, 0x01, 0x0a,
0x13, 0x67, 0x6d, 0x73, 0x5f, 0x61, 0x70, 0x70, 0x5f, 0x70, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74,
0x5f, 0x73, 0x64, 0x6b, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x05,
0x52, 0x02, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0e, 0x73, 0x64, 0x6b, 0x5f, 0x70, 0x72, 0x6f, 0x64,
0x75, 0x63, 0x74, 0x5f, 0x69, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0c, 0x73, 0x64,
0x6b, 0x50, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x61, 0x6d,
0x6f, 0x75, 0x6e, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x61, 0x6d, 0x6f, 0x75,
0x6e, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x18, 0x04, 0x20, 0x01,
0x28, 0x09, 0x52, 0x06, 0x72, 0x65, 0x6d, 0x61, 0x72, 0x6b, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79,
0x70, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x05, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x14,
0x0a, 0x05, 0x6f, 0x72, 0x64, 0x65, 0x72, 0x18, 0x06, 0x20, 0x01, 0x28, 0x05, 0x52, 0x05, 0x6f,
0x72, 0x64, 0x65, 0x72, 0x42, 0x0b, 0x5a, 0x09, 0x2e, 0x2f, 0x67, 0x75, 0x64, 0x62, 0x67, 0x6d,
0x73, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
}
var (
file_gms_center_proto_rawDescOnce sync.Once
file_gms_center_proto_rawDescData = file_gms_center_proto_rawDesc
)
func file_gms_center_proto_rawDescGZIP() []byte {
file_gms_center_proto_rawDescOnce.Do(func() {
file_gms_center_proto_rawDescData = protoimpl.X.CompressGZIP(file_gms_center_proto_rawDescData)
})
return file_gms_center_proto_rawDescData
}
var file_gms_center_proto_msgTypes = make([]protoimpl.MessageInfo, 19)
var file_gms_center_proto_goTypes = []interface{}{
(*GmsAppHotUpdateBase)(nil), // 0: gudbgms.gms_app_hot_update_base
(*GmsAppHotUpdateDetail)(nil), // 1: gudbgms.gms_app_hot_update_detail
(*GmsAppLoginType)(nil), // 2: gudbgms.gms_app_login_type
(*GmsAppNotice)(nil), // 3: gudbgms.gms_app_notice
(*GmsAppOrders)(nil), // 4: gudbgms.gms_app_orders
(*GmsAppPackageType)(nil), // 5: gudbgms.gms_app_package_type
(*GmsAppServ)(nil), // 6: gudbgms.gms_app_serv
(*GmsAppWhiteList)(nil), // 7: gudbgms.gms_app_white_list
(*GmsGameAccount)(nil), // 8: gudbgms.gms_game_account
(*GmsGameRole)(nil), // 9: gudbgms.gms_game_role
(*GmsLog)(nil), // 10: gudbgms.gms_log
(*GmsLogDcrLoginStep)(nil), // 11: gudbgms.gms_log_dcr_login_step
(*GmsAppInvite)(nil), // 12: gudbgms.gms_app_invite
(*GmsLogDcrDayFirstLogin)(nil), // 13: gudbgms.gms_log_dcr_day_first_login
(*GmsAppSdkCfg)(nil), // 14: gudbgms.gms_app_sdk_cfg
(*GmsLeagueId)(nil), // 15: gudbgms.gms_league_id
(*GmsLeagueName)(nil), // 16: gudbgms.gms_league_name
(*GmsGameAlertSettings)(nil), // 17: gudbgms.gms_game_alert_settings
(*GmsAppProductSdk)(nil), // 18: gudbgms.gms_app_product_sdk
}
var file_gms_center_proto_depIdxs = []int32{
0, // [0:0] is the sub-list for method output_type
0, // [0:0] is the sub-list for method input_type
0, // [0:0] is the sub-list for extension type_name
0, // [0:0] is the sub-list for extension extendee
0, // [0:0] is the sub-list for field type_name
}
func init() { file_gms_center_proto_init() }
func file_gms_center_proto_init() {
if File_gms_center_proto != nil {
return
}
if !protoimpl.UnsafeEnabled {
file_gms_center_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppHotUpdateBase); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppHotUpdateDetail); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppLoginType); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppNotice); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppOrders); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppPackageType); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppServ); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppWhiteList); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsGameAccount); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsGameRole); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsLog); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsLogDcrLoginStep); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppInvite); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsLogDcrDayFirstLogin); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppSdkCfg); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsLeagueId); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsLeagueName); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsGameAlertSettings); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
file_gms_center_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
switch v := v.(*GmsAppProductSdk); i {
case 0:
return &v.state
case 1:
return &v.sizeCache
case 2:
return &v.unknownFields
default:
return nil
}
}
}
type x struct{}
out := protoimpl.TypeBuilder{
File: protoimpl.DescBuilder{
GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
RawDescriptor: file_gms_center_proto_rawDesc,
NumEnums: 0,
NumMessages: 19,
NumExtensions: 0,
NumServices: 0,
},
GoTypes: file_gms_center_proto_goTypes,
DependencyIndexes: file_gms_center_proto_depIdxs,
MessageInfos: file_gms_center_proto_msgTypes,
}.Build()
File_gms_center_proto = out.File
file_gms_center_proto_rawDesc = nil
file_gms_center_proto_goTypes = nil
file_gms_center_proto_depIdxs = nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/MikeDDD/gu.git
git@gitee.com:MikeDDD/gu.git
MikeDDD
gu
gu
v0.0.127

搜索帮助