| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.30.0-devel
- // protoc v4.22.3
- // source: partner.proto
- package partner
- import (
- common "git.ikuban.com/server/pw-protobuf/api/common"
- _ "google.golang.org/genproto/googleapis/api/annotations"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- emptypb "google.golang.org/protobuf/types/known/emptypb"
- 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 OnlinePersonReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- UserManNum int64 `protobuf:"varint,1,opt,name=userManNum,proto3" json:"userManNum"` // 男用户在线数
- UserWomanNum int64 `protobuf:"varint,2,opt,name=userWomanNum,proto3" json:"userWomanNum"` // 女用户在线数
- UserOtherNum int64 `protobuf:"varint,3,opt,name=userOtherNum,proto3" json:"userOtherNum"` // 未填写性别的用户在线数
- }
- func (x *OnlinePersonReply) Reset() {
- *x = OnlinePersonReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *OnlinePersonReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*OnlinePersonReply) ProtoMessage() {}
- func (x *OnlinePersonReply) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 OnlinePersonReply.ProtoReflect.Descriptor instead.
- func (*OnlinePersonReply) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{0}
- }
- func (x *OnlinePersonReply) GetUserManNum() int64 {
- if x != nil {
- return x.UserManNum
- }
- return 0
- }
- func (x *OnlinePersonReply) GetUserWomanNum() int64 {
- if x != nil {
- return x.UserWomanNum
- }
- return 0
- }
- func (x *OnlinePersonReply) GetUserOtherNum() int64 {
- if x != nil {
- return x.UserOtherNum
- }
- return 0
- }
- type SendOverOneMinuteUnreadMessageMessageRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- PersonID string `protobuf:"bytes,1,opt,name=personID,proto3" json:"personID"`
- UnreadNum int64 `protobuf:"varint,2,opt,name=unreadNum,proto3" json:"unreadNum"`
- NameList []string `protobuf:"bytes,3,rep,name=nameList,proto3" json:"nameList"`
- }
- func (x *SendOverOneMinuteUnreadMessageMessageRequest) Reset() {
- *x = SendOverOneMinuteUnreadMessageMessageRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *SendOverOneMinuteUnreadMessageMessageRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*SendOverOneMinuteUnreadMessageMessageRequest) ProtoMessage() {}
- func (x *SendOverOneMinuteUnreadMessageMessageRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 SendOverOneMinuteUnreadMessageMessageRequest.ProtoReflect.Descriptor instead.
- func (*SendOverOneMinuteUnreadMessageMessageRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{1}
- }
- func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetPersonID() string {
- if x != nil {
- return x.PersonID
- }
- return ""
- }
- func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetUnreadNum() int64 {
- if x != nil {
- return x.UnreadNum
- }
- return 0
- }
- func (x *SendOverOneMinuteUnreadMessageMessageRequest) GetNameList() []string {
- if x != nil {
- return x.NameList
- }
- return make([]string, 0)
- }
- type GetRecommendPartnerDBRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Type string `protobuf:"bytes,1,opt,name=type,proto3" json:"type"` // 类型
- Sex int64 `protobuf:"varint,2,opt,name=sex,proto3" json:"sex"`
- IdentifyIds []string `protobuf:"bytes,3,rep,name=identifyIds,proto3" json:"identifyIds"` // 匹配过的identifyID
- }
- func (x *GetRecommendPartnerDBRequest) Reset() {
- *x = GetRecommendPartnerDBRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *GetRecommendPartnerDBRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*GetRecommendPartnerDBRequest) ProtoMessage() {}
- func (x *GetRecommendPartnerDBRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 GetRecommendPartnerDBRequest.ProtoReflect.Descriptor instead.
- func (*GetRecommendPartnerDBRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{2}
- }
- func (x *GetRecommendPartnerDBRequest) GetType() string {
- if x != nil {
- return x.Type
- }
- return ""
- }
- func (x *GetRecommendPartnerDBRequest) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- func (x *GetRecommendPartnerDBRequest) GetIdentifyIds() []string {
- if x != nil {
- return x.IdentifyIds
- }
- return make([]string, 0)
- }
- type FindExamineRecordListRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- Offset int64 `protobuf:"varint,2,opt,name=offset,proto3" json:"offset"`
- Status string `protobuf:"bytes,3,opt,name=status,proto3" json:"status"` // 审核状态
- Pid int64 `protobuf:"varint,4,opt,name=pid,proto3" json:"pid"` // 陪伴员的ID(number)
- }
- func (x *FindExamineRecordListRequest) Reset() {
- *x = FindExamineRecordListRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindExamineRecordListRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindExamineRecordListRequest) ProtoMessage() {}
- func (x *FindExamineRecordListRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 FindExamineRecordListRequest.ProtoReflect.Descriptor instead.
- func (*FindExamineRecordListRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{3}
- }
- func (x *FindExamineRecordListRequest) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *FindExamineRecordListRequest) GetOffset() int64 {
- if x != nil {
- return x.Offset
- }
- return 0
- }
- func (x *FindExamineRecordListRequest) GetStatus() string {
- if x != nil {
- return x.Status
- }
- return ""
- }
- func (x *FindExamineRecordListRequest) GetPid() int64 {
- if x != nil {
- return x.Pid
- }
- return 0
- }
- type FindExamineRecordListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- List []*ExamineRecordInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
- }
- func (x *FindExamineRecordListReply) Reset() {
- *x = FindExamineRecordListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindExamineRecordListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindExamineRecordListReply) ProtoMessage() {}
- func (x *FindExamineRecordListReply) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 FindExamineRecordListReply.ProtoReflect.Descriptor instead.
- func (*FindExamineRecordListReply) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{4}
- }
- func (x *FindExamineRecordListReply) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *FindExamineRecordListReply) GetList() []*ExamineRecordInfo {
- if x != nil {
- return x.List
- }
- return make([]*ExamineRecordInfo, 0)
- }
- type ExamineRecordInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
- Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
- AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
- IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
- Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
- Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
- Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
- Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
- ExamineStatus string `protobuf:"bytes,9,opt,name=examineStatus,proto3" json:"examineStatus"` //审核状态
- Id int64 `protobuf:"varint,10,opt,name=id,proto3" json:"id"` //id
- Age int64 `protobuf:"varint,11,opt,name=age,proto3" json:"age"` // 年龄
- Constellation string `protobuf:"bytes,12,opt,name=constellation,proto3" json:"constellation"` // 星座
- CreateTime int64 `protobuf:"varint,13,opt,name=createTime,proto3" json:"createTime"` // 创建时间
- }
- func (x *ExamineRecordInfo) Reset() {
- *x = ExamineRecordInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineRecordInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineRecordInfo) ProtoMessage() {}
- func (x *ExamineRecordInfo) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 ExamineRecordInfo.ProtoReflect.Descriptor instead.
- func (*ExamineRecordInfo) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{5}
- }
- func (x *ExamineRecordInfo) GetPartnerId() string {
- if x != nil {
- return x.PartnerId
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetNickname() string {
- if x != nil {
- return x.Nickname
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetAvatarUrl() string {
- if x != nil {
- return x.AvatarUrl
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetIntroduceVoice() string {
- if x != nil {
- return x.IntroduceVoice
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetSignature() string {
- if x != nil {
- return x.Signature
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetPictures() []string {
- if x != nil {
- return x.Pictures
- }
- return make([]string, 0)
- }
- func (x *ExamineRecordInfo) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- func (x *ExamineRecordInfo) GetPid() int64 {
- if x != nil {
- return x.Pid
- }
- return 0
- }
- func (x *ExamineRecordInfo) GetExamineStatus() string {
- if x != nil {
- return x.ExamineStatus
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *ExamineRecordInfo) GetAge() int64 {
- if x != nil {
- return x.Age
- }
- return 0
- }
- func (x *ExamineRecordInfo) GetConstellation() string {
- if x != nil {
- return x.Constellation
- }
- return ""
- }
- func (x *ExamineRecordInfo) GetCreateTime() int64 {
- if x != nil {
- return x.CreateTime
- }
- return 0
- }
- type FindExamineListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId string `protobuf:"bytes,1,opt,name=nextId,proto3" json:"nextId"`
- List []*ExamineInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
- }
- func (x *FindExamineListReply) Reset() {
- *x = FindExamineListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *FindExamineListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*FindExamineListReply) ProtoMessage() {}
- func (x *FindExamineListReply) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 FindExamineListReply.ProtoReflect.Descriptor instead.
- func (*FindExamineListReply) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{6}
- }
- func (x *FindExamineListReply) GetNextId() string {
- if x != nil {
- return x.NextId
- }
- return ""
- }
- func (x *FindExamineListReply) GetList() []*ExamineInfo {
- if x != nil {
- return x.List
- }
- return make([]*ExamineInfo, 0)
- }
- type ExamineInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID(string)
- Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
- AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像
- IntroduceVoice string `protobuf:"bytes,4,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音的链接
- Signature string `protobuf:"bytes,5,opt,name=signature,proto3" json:"signature"` // 介绍(签名)
- Pictures []string `protobuf:"bytes,6,rep,name=pictures,proto3" json:"pictures"` // 相册(主页图片)
- Sex int64 `protobuf:"varint,7,opt,name=sex,proto3" json:"sex"` // 性别
- Pid int64 `protobuf:"varint,8,opt,name=pid,proto3" json:"pid"` // 接待员ID(number)
- Age int64 `protobuf:"varint,9,opt,name=age,proto3" json:"age"` // 年龄
- Constellation string `protobuf:"bytes,10,opt,name=constellation,proto3" json:"constellation"` // 星座
- WxNickname string `protobuf:"bytes,11,opt,name=wxNickname,proto3" json:"wxNickname"` // 昵称
- WxAvatarUrl string `protobuf:"bytes,12,opt,name=wxAvatarUrl,proto3" json:"wxAvatarUrl"` // 头像
- }
- func (x *ExamineInfo) Reset() {
- *x = ExamineInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExamineInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExamineInfo) ProtoMessage() {}
- func (x *ExamineInfo) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 ExamineInfo.ProtoReflect.Descriptor instead.
- func (*ExamineInfo) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{7}
- }
- func (x *ExamineInfo) GetPartnerId() string {
- if x != nil {
- return x.PartnerId
- }
- return ""
- }
- func (x *ExamineInfo) GetNickname() string {
- if x != nil {
- return x.Nickname
- }
- return ""
- }
- func (x *ExamineInfo) GetAvatarUrl() string {
- if x != nil {
- return x.AvatarUrl
- }
- return ""
- }
- func (x *ExamineInfo) GetIntroduceVoice() string {
- if x != nil {
- return x.IntroduceVoice
- }
- return ""
- }
- func (x *ExamineInfo) GetSignature() string {
- if x != nil {
- return x.Signature
- }
- return ""
- }
- func (x *ExamineInfo) GetPictures() []string {
- if x != nil {
- return x.Pictures
- }
- return make([]string, 0)
- }
- func (x *ExamineInfo) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- func (x *ExamineInfo) GetPid() int64 {
- if x != nil {
- return x.Pid
- }
- return 0
- }
- func (x *ExamineInfo) GetAge() int64 {
- if x != nil {
- return x.Age
- }
- return 0
- }
- func (x *ExamineInfo) GetConstellation() string {
- if x != nil {
- return x.Constellation
- }
- return ""
- }
- func (x *ExamineInfo) GetWxNickname() string {
- if x != nil {
- return x.WxNickname
- }
- return ""
- }
- func (x *ExamineInfo) GetWxAvatarUrl() string {
- if x != nil {
- return x.WxAvatarUrl
- }
- return ""
- }
- type ExaminePartnerRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
- IsPass bool `protobuf:"varint,2,opt,name=isPass,proto3" json:"isPass"` // 是否审核通过
- }
- func (x *ExaminePartnerRequest) Reset() {
- *x = ExaminePartnerRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ExaminePartnerRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ExaminePartnerRequest) ProtoMessage() {}
- func (x *ExaminePartnerRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 ExaminePartnerRequest.ProtoReflect.Descriptor instead.
- func (*ExaminePartnerRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{8}
- }
- func (x *ExaminePartnerRequest) GetPartnerId() string {
- if x != nil {
- return x.PartnerId
- }
- return ""
- }
- func (x *ExaminePartnerRequest) GetIsPass() bool {
- if x != nil {
- return x.IsPass
- }
- return false
- }
- type PartnerGetRoomBalanceAndTodayBalanceReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- TodayProfit int64 `protobuf:"varint,1,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
- RoomProfit int64 `protobuf:"varint,2,opt,name=roomProfit,proto3" json:"roomProfit"` // 房间收益
- }
- func (x *PartnerGetRoomBalanceAndTodayBalanceReply) Reset() {
- *x = PartnerGetRoomBalanceAndTodayBalanceReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerGetRoomBalanceAndTodayBalanceReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerGetRoomBalanceAndTodayBalanceReply) ProtoMessage() {}
- func (x *PartnerGetRoomBalanceAndTodayBalanceReply) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerGetRoomBalanceAndTodayBalanceReply.ProtoReflect.Descriptor instead.
- func (*PartnerGetRoomBalanceAndTodayBalanceReply) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{9}
- }
- func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetTodayProfit() int64 {
- if x != nil {
- return x.TodayProfit
- }
- return 0
- }
- func (x *PartnerGetRoomBalanceAndTodayBalanceReply) GetRoomProfit() int64 {
- if x != nil {
- return x.RoomProfit
- }
- return 0
- }
- type PartnerCollectIDsRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ChatRecordIds []int64 `protobuf:"varint,1,rep,packed,name=chatRecordIds,proto3" json:"chatRecordIds"` // 记录ID
- RoomId int64 `protobuf:"varint,2,opt,name=roomId,proto3" json:"roomId"` // 房间ID
- }
- func (x *PartnerCollectIDsRequest) Reset() {
- *x = PartnerCollectIDsRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerCollectIDsRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerCollectIDsRequest) ProtoMessage() {}
- func (x *PartnerCollectIDsRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerCollectIDsRequest.ProtoReflect.Descriptor instead.
- func (*PartnerCollectIDsRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{10}
- }
- func (x *PartnerCollectIDsRequest) GetChatRecordIds() []int64 {
- if x != nil {
- return x.ChatRecordIds
- }
- return make([]int64, 0)
- }
- func (x *PartnerCollectIDsRequest) GetRoomId() int64 {
- if x != nil {
- return x.RoomId
- }
- return 0
- }
- type PartnerCollectRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ChatRecordId int64 `protobuf:"varint,1,opt,name=chatRecordId,proto3" json:"chatRecordId"` // 记录ID
- }
- func (x *PartnerCollectRequest) Reset() {
- *x = PartnerCollectRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerCollectRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerCollectRequest) ProtoMessage() {}
- func (x *PartnerCollectRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerCollectRequest.ProtoReflect.Descriptor instead.
- func (*PartnerCollectRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{11}
- }
- func (x *PartnerCollectRequest) GetChatRecordId() int64 {
- if x != nil {
- return x.ChatRecordId
- }
- return 0
- }
- type CreateScripRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Text string `protobuf:"bytes,1,opt,name=text,proto3" json:"text"` // 纸条内容
- PictureUrl string `protobuf:"bytes,2,opt,name=pictureUrl,proto3" json:"pictureUrl"` // 纸条背景图
- }
- func (x *CreateScripRequest) Reset() {
- *x = CreateScripRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *CreateScripRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*CreateScripRequest) ProtoMessage() {}
- func (x *CreateScripRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 CreateScripRequest.ProtoReflect.Descriptor instead.
- func (*CreateScripRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{12}
- }
- func (x *CreateScripRequest) GetText() string {
- if x != nil {
- return x.Text
- }
- return ""
- }
- func (x *CreateScripRequest) GetPictureUrl() string {
- if x != nil {
- return x.PictureUrl
- }
- return ""
- }
- type ReplyScripRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- ScripId int64 `protobuf:"varint,4,opt,name=scripId,proto3" json:"scripId"` // 小纸条ID
- Message *common.Message `protobuf:"bytes,5,opt,name=message,proto3" json:"message"` // 回复内容 只需要提供 回复小纸条的内容 或 回复小纸条的素材链接
- MsgType string `protobuf:"bytes,6,opt,name=msgType,proto3" json:"msgType"`
- }
- func (x *ReplyScripRequest) Reset() {
- *x = ReplyScripRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *ReplyScripRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*ReplyScripRequest) ProtoMessage() {}
- func (x *ReplyScripRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 ReplyScripRequest.ProtoReflect.Descriptor instead.
- func (*ReplyScripRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{13}
- }
- func (x *ReplyScripRequest) GetScripId() int64 {
- if x != nil {
- return x.ScripId
- }
- return 0
- }
- func (x *ReplyScripRequest) GetMessage() *common.Message {
- if x != nil && x.Message != nil {
- return x.Message
- }
- return &common.Message{}
- }
- func (x *ReplyScripRequest) GetMsgType() string {
- if x != nil {
- return x.MsgType
- }
- return ""
- }
- type PartnerWithdrawRecordListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- NextId int64 `protobuf:"varint,1,opt,name=nextId,proto3" json:"nextId"`
- List []*WithdrawInfo `protobuf:"bytes,2,rep,name=list,proto3" json:"list"`
- }
- func (x *PartnerWithdrawRecordListReply) Reset() {
- *x = PartnerWithdrawRecordListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerWithdrawRecordListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerWithdrawRecordListReply) ProtoMessage() {}
- func (x *PartnerWithdrawRecordListReply) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerWithdrawRecordListReply.ProtoReflect.Descriptor instead.
- func (*PartnerWithdrawRecordListReply) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{14}
- }
- func (x *PartnerWithdrawRecordListReply) GetNextId() int64 {
- if x != nil {
- return x.NextId
- }
- return 0
- }
- func (x *PartnerWithdrawRecordListReply) GetList() []*WithdrawInfo {
- if x != nil {
- return x.List
- }
- return make([]*WithdrawInfo, 0)
- }
- type WithdrawInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"` // 记录ID
- Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
- Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
- Status string `protobuf:"bytes,4,opt,name=status,proto3" json:"status"` // 状态
- Result string `protobuf:"bytes,5,opt,name=result,proto3" json:"result"` // 结果
- CreateTime int64 `protobuf:"varint,6,opt,name=createTime,proto3" json:"createTime"` // 创建时间
- SuccessTime int64 `protobuf:"varint,7,opt,name=successTime,proto3" json:"successTime"` // 成功时间
- }
- func (x *WithdrawInfo) Reset() {
- *x = WithdrawInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *WithdrawInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*WithdrawInfo) ProtoMessage() {}
- func (x *WithdrawInfo) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 WithdrawInfo.ProtoReflect.Descriptor instead.
- func (*WithdrawInfo) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{15}
- }
- func (x *WithdrawInfo) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *WithdrawInfo) GetMoney() int64 {
- if x != nil {
- return x.Money
- }
- return 0
- }
- func (x *WithdrawInfo) GetCredit() int64 {
- if x != nil {
- return x.Credit
- }
- return 0
- }
- func (x *WithdrawInfo) GetStatus() string {
- if x != nil {
- return x.Status
- }
- return ""
- }
- func (x *WithdrawInfo) GetResult() string {
- if x != nil {
- return x.Result
- }
- return ""
- }
- func (x *WithdrawInfo) GetCreateTime() int64 {
- if x != nil {
- return x.CreateTime
- }
- return 0
- }
- func (x *WithdrawInfo) GetSuccessTime() int64 {
- if x != nil {
- return x.SuccessTime
- }
- return 0
- }
- type PartnerWithdrawTemplateListReply struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- List []*PartnerWithdrawTemplateInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- }
- func (x *PartnerWithdrawTemplateListReply) Reset() {
- *x = PartnerWithdrawTemplateListReply{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerWithdrawTemplateListReply) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerWithdrawTemplateListReply) ProtoMessage() {}
- func (x *PartnerWithdrawTemplateListReply) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerWithdrawTemplateListReply.ProtoReflect.Descriptor instead.
- func (*PartnerWithdrawTemplateListReply) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{16}
- }
- func (x *PartnerWithdrawTemplateListReply) GetList() []*PartnerWithdrawTemplateInfo {
- if x != nil {
- return x.List
- }
- return make([]*PartnerWithdrawTemplateInfo, 0)
- }
- type PartnerWithdrawTemplateInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id int64 `protobuf:"varint,1,opt,name=id,proto3" json:"id"`
- Money int64 `protobuf:"varint,2,opt,name=money,proto3" json:"money"` // 提现多少钱
- Credit int64 `protobuf:"varint,3,opt,name=credit,proto3" json:"credit"` // 提现需要多少积分
- Title string `protobuf:"bytes,4,opt,name=title,proto3" json:"title"` // 提现的标题
- }
- func (x *PartnerWithdrawTemplateInfo) Reset() {
- *x = PartnerWithdrawTemplateInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerWithdrawTemplateInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerWithdrawTemplateInfo) ProtoMessage() {}
- func (x *PartnerWithdrawTemplateInfo) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerWithdrawTemplateInfo.ProtoReflect.Descriptor instead.
- func (*PartnerWithdrawTemplateInfo) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{17}
- }
- func (x *PartnerWithdrawTemplateInfo) GetId() int64 {
- if x != nil {
- return x.Id
- }
- return 0
- }
- func (x *PartnerWithdrawTemplateInfo) GetMoney() int64 {
- if x != nil {
- return x.Money
- }
- return 0
- }
- func (x *PartnerWithdrawTemplateInfo) GetCredit() int64 {
- if x != nil {
- return x.Credit
- }
- return 0
- }
- func (x *PartnerWithdrawTemplateInfo) GetTitle() string {
- if x != nil {
- return x.Title
- }
- return ""
- }
- type PartnerUpdateWorkingStatusRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- WorkingStatus string `protobuf:"bytes,1,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
- }
- func (x *PartnerUpdateWorkingStatusRequest) Reset() {
- *x = PartnerUpdateWorkingStatusRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerUpdateWorkingStatusRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerUpdateWorkingStatusRequest) ProtoMessage() {}
- func (x *PartnerUpdateWorkingStatusRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_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 PartnerUpdateWorkingStatusRequest.ProtoReflect.Descriptor instead.
- func (*PartnerUpdateWorkingStatusRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{18}
- }
- func (x *PartnerUpdateWorkingStatusRequest) GetWorkingStatus() string {
- if x != nil {
- return x.WorkingStatus
- }
- return ""
- }
- type PartnerGetAwardRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- AwardType string `protobuf:"bytes,1,opt,name=awardType,proto3" json:"awardType"` // 奖励类型
- PersonID string `protobuf:"bytes,2,opt,name=personID,proto3" json:"personID"` // 查询目标的ID
- PersonType string `protobuf:"bytes,3,opt,name=personType,proto3" json:"personType"` // 类型
- }
- func (x *PartnerGetAwardRequest) Reset() {
- *x = PartnerGetAwardRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerGetAwardRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerGetAwardRequest) ProtoMessage() {}
- func (x *PartnerGetAwardRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[19]
- 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 PartnerGetAwardRequest.ProtoReflect.Descriptor instead.
- func (*PartnerGetAwardRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{19}
- }
- func (x *PartnerGetAwardRequest) GetAwardType() string {
- if x != nil {
- return x.AwardType
- }
- return ""
- }
- func (x *PartnerGetAwardRequest) GetPersonID() string {
- if x != nil {
- return x.PersonID
- }
- return ""
- }
- func (x *PartnerGetAwardRequest) GetPersonType() string {
- if x != nil {
- return x.PersonType
- }
- return ""
- }
- type LevelTable struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- List []*LevelInfo `protobuf:"bytes,1,rep,name=list,proto3" json:"list"`
- }
- func (x *LevelTable) Reset() {
- *x = LevelTable{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *LevelTable) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LevelTable) ProtoMessage() {}
- func (x *LevelTable) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[20]
- 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 LevelTable.ProtoReflect.Descriptor instead.
- func (*LevelTable) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{20}
- }
- func (x *LevelTable) GetList() []*LevelInfo {
- if x != nil {
- return x.List
- }
- return make([]*LevelInfo, 0)
- }
- type LevelInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Level int64 `protobuf:"varint,1,opt,name=level,proto3" json:"level"` // 等级
- ChatBenefit int64 `protobuf:"varint,2,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
- CallBenefit int64 `protobuf:"varint,3,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
- Condition string `protobuf:"bytes,4,opt,name=condition,proto3" json:"condition"` // 达成条件
- }
- func (x *LevelInfo) Reset() {
- *x = LevelInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *LevelInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*LevelInfo) ProtoMessage() {}
- func (x *LevelInfo) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[21]
- 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 LevelInfo.ProtoReflect.Descriptor instead.
- func (*LevelInfo) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{21}
- }
- func (x *LevelInfo) GetLevel() int64 {
- if x != nil {
- return x.Level
- }
- return 0
- }
- func (x *LevelInfo) GetChatBenefit() int64 {
- if x != nil {
- return x.ChatBenefit
- }
- return 0
- }
- func (x *LevelInfo) GetCallBenefit() int64 {
- if x != nil {
- return x.CallBenefit
- }
- return 0
- }
- func (x *LevelInfo) GetCondition() string {
- if x != nil {
- return x.Condition
- }
- return ""
- }
- type AddPartnerBalanceRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- PartnerId string `protobuf:"bytes,1,opt,name=partnerId,proto3" json:"partnerId"`
- Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"`
- }
- func (x *AddPartnerBalanceRequest) Reset() {
- *x = AddPartnerBalanceRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *AddPartnerBalanceRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*AddPartnerBalanceRequest) ProtoMessage() {}
- func (x *AddPartnerBalanceRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[22]
- 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 AddPartnerBalanceRequest.ProtoReflect.Descriptor instead.
- func (*AddPartnerBalanceRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{22}
- }
- func (x *AddPartnerBalanceRequest) GetPartnerId() string {
- if x != nil {
- return x.PartnerId
- }
- return ""
- }
- func (x *AddPartnerBalanceRequest) GetBalance() int64 {
- if x != nil {
- return x.Balance
- }
- return 0
- }
- type PartnerInfo struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
- Nickname string `protobuf:"bytes,2,opt,name=nickname,proto3" json:"nickname"` // 昵称
- AvatarUrl string `protobuf:"bytes,3,opt,name=avatarUrl,proto3" json:"avatarUrl"` // 头像链接
- Age int64 `protobuf:"varint,4,opt,name=age,proto3" json:"age"` // 年龄
- Sex int64 `protobuf:"varint,5,opt,name=sex,proto3" json:"sex"` // 性别
- Constellation string `protobuf:"bytes,6,opt,name=constellation,proto3" json:"constellation"` // 星座
- Level int64 `protobuf:"varint,7,opt,name=level,proto3" json:"level"` // 等级
- TagList []int64 `protobuf:"varint,8,rep,packed,name=tagList,proto3" json:"tagList"` // 标签
- Signature string `protobuf:"bytes,9,opt,name=signature,proto3" json:"signature"` // 签名
- IntroduceVoice string `protobuf:"bytes,10,opt,name=introduceVoice,proto3" json:"introduceVoice"` // 介绍语音
- Province string `protobuf:"bytes,11,opt,name=province,proto3" json:"province"` // 省
- City string `protobuf:"bytes,12,opt,name=city,proto3" json:"city"` // 市
- Area string `protobuf:"bytes,13,opt,name=area,proto3" json:"area"` // 区
- PartnerId int64 `protobuf:"varint,14,opt,name=partnerId,proto3" json:"partnerId"` // 接待员ID
- IsBlack bool `protobuf:"varint,15,opt,name=isBlack,proto3" json:"isBlack"` // 是否被封号
- WorkingStatus string `protobuf:"bytes,16,opt,name=workingStatus,proto3" json:"workingStatus"` // 工作状态
- RegisterStatus string `protobuf:"bytes,17,opt,name=registerStatus,proto3" json:"registerStatus"` // 审核状态
- }
- func (x *PartnerInfo) Reset() {
- *x = PartnerInfo{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerInfo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerInfo) ProtoMessage() {}
- func (x *PartnerInfo) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[23]
- 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 PartnerInfo.ProtoReflect.Descriptor instead.
- func (*PartnerInfo) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{23}
- }
- func (x *PartnerInfo) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *PartnerInfo) GetNickname() string {
- if x != nil {
- return x.Nickname
- }
- return ""
- }
- func (x *PartnerInfo) GetAvatarUrl() string {
- if x != nil {
- return x.AvatarUrl
- }
- return ""
- }
- func (x *PartnerInfo) GetAge() int64 {
- if x != nil {
- return x.Age
- }
- return 0
- }
- func (x *PartnerInfo) GetSex() int64 {
- if x != nil {
- return x.Sex
- }
- return 0
- }
- func (x *PartnerInfo) GetConstellation() string {
- if x != nil {
- return x.Constellation
- }
- return ""
- }
- func (x *PartnerInfo) GetLevel() int64 {
- if x != nil {
- return x.Level
- }
- return 0
- }
- func (x *PartnerInfo) GetTagList() []int64 {
- if x != nil {
- return x.TagList
- }
- return make([]int64, 0)
- }
- func (x *PartnerInfo) GetSignature() string {
- if x != nil {
- return x.Signature
- }
- return ""
- }
- func (x *PartnerInfo) GetIntroduceVoice() string {
- if x != nil {
- return x.IntroduceVoice
- }
- return ""
- }
- func (x *PartnerInfo) GetProvince() string {
- if x != nil {
- return x.Province
- }
- return ""
- }
- func (x *PartnerInfo) GetCity() string {
- if x != nil {
- return x.City
- }
- return ""
- }
- func (x *PartnerInfo) GetArea() string {
- if x != nil {
- return x.Area
- }
- return ""
- }
- func (x *PartnerInfo) GetPartnerId() int64 {
- if x != nil {
- return x.PartnerId
- }
- return 0
- }
- func (x *PartnerInfo) GetIsBlack() bool {
- if x != nil {
- return x.IsBlack
- }
- return false
- }
- func (x *PartnerInfo) GetWorkingStatus() string {
- if x != nil {
- return x.WorkingStatus
- }
- return ""
- }
- func (x *PartnerInfo) GetRegisterStatus() string {
- if x != nil {
- return x.RegisterStatus
- }
- return ""
- }
- type PartnerMessage struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
- LookNum int64 `protobuf:"varint,2,opt,name=lookNum,proto3" json:"lookNum"` // 看过我的数量
- LookUnreadNum int64 `protobuf:"varint,3,opt,name=lookUnreadNum,proto3" json:"lookUnreadNum"` // 未读的看过我的数量
- TodayReceptionNum int64 `protobuf:"varint,4,opt,name=todayReceptionNum,proto3" json:"todayReceptionNum"` // 今日接待人数
- ReversionRate string `protobuf:"bytes,5,opt,name=reversionRate,proto3" json:"reversionRate"` // 五分钟的回复率
- LikedNum int64 `protobuf:"varint,6,opt,name=likedNum,proto3" json:"likedNum"` // 喜欢我
- LikedUnreadNum int64 `protobuf:"varint,7,opt,name=likedUnreadNum,proto3" json:"likedUnreadNum"` // 喜欢我的未读数
- AvatarUrlList []string `protobuf:"bytes,8,rep,name=avatarUrlList,proto3" json:"avatarUrlList"` // 头像列表
- LikeNum int64 `protobuf:"varint,9,opt,name=likeNum,proto3" json:"likeNum"` // 我喜欢
- }
- func (x *PartnerMessage) Reset() {
- *x = PartnerMessage{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerMessage) ProtoMessage() {}
- func (x *PartnerMessage) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[24]
- 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 PartnerMessage.ProtoReflect.Descriptor instead.
- func (*PartnerMessage) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{24}
- }
- func (x *PartnerMessage) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *PartnerMessage) GetLookNum() int64 {
- if x != nil {
- return x.LookNum
- }
- return 0
- }
- func (x *PartnerMessage) GetLookUnreadNum() int64 {
- if x != nil {
- return x.LookUnreadNum
- }
- return 0
- }
- func (x *PartnerMessage) GetTodayReceptionNum() int64 {
- if x != nil {
- return x.TodayReceptionNum
- }
- return 0
- }
- func (x *PartnerMessage) GetReversionRate() string {
- if x != nil {
- return x.ReversionRate
- }
- return ""
- }
- func (x *PartnerMessage) GetLikedNum() int64 {
- if x != nil {
- return x.LikedNum
- }
- return 0
- }
- func (x *PartnerMessage) GetLikedUnreadNum() int64 {
- if x != nil {
- return x.LikedUnreadNum
- }
- return 0
- }
- func (x *PartnerMessage) GetAvatarUrlList() []string {
- if x != nil {
- return x.AvatarUrlList
- }
- return make([]string, 0)
- }
- func (x *PartnerMessage) GetLikeNum() int64 {
- if x != nil {
- return x.LikeNum
- }
- return 0
- }
- type PartnerBalance struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
- Balance int64 `protobuf:"varint,2,opt,name=balance,proto3" json:"balance"` // 可提现余额
- TodayProfit int64 `protobuf:"varint,3,opt,name=todayProfit,proto3" json:"todayProfit"` // 今日收益
- Level int64 `protobuf:"varint,4,opt,name=level,proto3" json:"level"` // 等级
- ChatBenefit int64 `protobuf:"varint,5,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
- CallBenefit int64 `protobuf:"varint,6,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
- UpLevelCondition string `protobuf:"bytes,7,opt,name=upLevelCondition,proto3" json:"upLevelCondition"` // 升级条件
- UpLevelBenefit int64 `protobuf:"varint,8,opt,name=upLevelBenefit,proto3" json:"upLevelBenefit"` // 升级需要的收益
- CumulativeIncome int64 `protobuf:"varint,9,opt,name=cumulativeIncome,proto3" json:"cumulativeIncome"` // 累计收益
- }
- func (x *PartnerBalance) Reset() {
- *x = PartnerBalance{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerBalance) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerBalance) ProtoMessage() {}
- func (x *PartnerBalance) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[25]
- 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 PartnerBalance.ProtoReflect.Descriptor instead.
- func (*PartnerBalance) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{25}
- }
- func (x *PartnerBalance) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *PartnerBalance) GetBalance() int64 {
- if x != nil {
- return x.Balance
- }
- return 0
- }
- func (x *PartnerBalance) GetTodayProfit() int64 {
- if x != nil {
- return x.TodayProfit
- }
- return 0
- }
- func (x *PartnerBalance) GetLevel() int64 {
- if x != nil {
- return x.Level
- }
- return 0
- }
- func (x *PartnerBalance) GetChatBenefit() int64 {
- if x != nil {
- return x.ChatBenefit
- }
- return 0
- }
- func (x *PartnerBalance) GetCallBenefit() int64 {
- if x != nil {
- return x.CallBenefit
- }
- return 0
- }
- func (x *PartnerBalance) GetUpLevelCondition() string {
- if x != nil {
- return x.UpLevelCondition
- }
- return ""
- }
- func (x *PartnerBalance) GetUpLevelBenefit() int64 {
- if x != nil {
- return x.UpLevelBenefit
- }
- return 0
- }
- func (x *PartnerBalance) GetCumulativeIncome() int64 {
- if x != nil {
- return x.CumulativeIncome
- }
- return 0
- }
- type PartnerDBBalance struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- Id string `protobuf:"bytes,1,opt,name=id,proto3" json:"id"` // id
- Level int64 `protobuf:"varint,2,opt,name=level,proto3" json:"level"` // 等级
- ChatBenefit int64 `protobuf:"varint,3,opt,name=chatBenefit,proto3" json:"chatBenefit"` // 聊天收益
- CallBenefit int64 `protobuf:"varint,4,opt,name=callBenefit,proto3" json:"callBenefit"` // 语音通话收益
- }
- func (x *PartnerDBBalance) Reset() {
- *x = PartnerDBBalance{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerDBBalance) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerDBBalance) ProtoMessage() {}
- func (x *PartnerDBBalance) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[26]
- 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 PartnerDBBalance.ProtoReflect.Descriptor instead.
- func (*PartnerDBBalance) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{26}
- }
- func (x *PartnerDBBalance) GetId() string {
- if x != nil {
- return x.Id
- }
- return ""
- }
- func (x *PartnerDBBalance) GetLevel() int64 {
- if x != nil {
- return x.Level
- }
- return 0
- }
- func (x *PartnerDBBalance) GetChatBenefit() int64 {
- if x != nil {
- return x.ChatBenefit
- }
- return 0
- }
- func (x *PartnerDBBalance) GetCallBenefit() int64 {
- if x != nil {
- return x.CallBenefit
- }
- return 0
- }
- type PartnerApplyWithdrawRequest struct {
- state protoimpl.MessageState
- sizeCache protoimpl.SizeCache
- unknownFields protoimpl.UnknownFields
- TemplateId int64 `protobuf:"varint,1,opt,name=templateId,proto3" json:"templateId"` // 提现模板id
- }
- func (x *PartnerApplyWithdrawRequest) Reset() {
- *x = PartnerApplyWithdrawRequest{}
- if protoimpl.UnsafeEnabled {
- mi := &file_partner_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- }
- func (x *PartnerApplyWithdrawRequest) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*PartnerApplyWithdrawRequest) ProtoMessage() {}
- func (x *PartnerApplyWithdrawRequest) ProtoReflect() protoreflect.Message {
- mi := &file_partner_proto_msgTypes[27]
- 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 PartnerApplyWithdrawRequest.ProtoReflect.Descriptor instead.
- func (*PartnerApplyWithdrawRequest) Descriptor() ([]byte, []int) {
- return file_partner_proto_rawDescGZIP(), []int{27}
- }
- func (x *PartnerApplyWithdrawRequest) GetTemplateId() int64 {
- if x != nil {
- return x.TemplateId
- }
- return 0
- }
- var File_partner_proto protoreflect.FileDescriptor
- var file_partner_proto_rawDesc = []byte{
- 0x0a, 0x0d, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12,
- 0x0b, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x1a, 0x1c, 0x67, 0x6f,
- 0x6f, 0x67, 0x6c, 0x65, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x61, 0x6e, 0x6e, 0x6f, 0x74, 0x61, 0x74,
- 0x69, 0x6f, 0x6e, 0x73, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x1b, 0x67, 0x6f, 0x6f, 0x67,
- 0x6c, 0x65, 0x2f, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x65, 0x6d, 0x70, 0x74,
- 0x79, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x1a, 0x17, 0x61, 0x70, 0x69, 0x2f, 0x63, 0x6f, 0x6d,
- 0x6d, 0x6f, 0x6e, 0x2f, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f,
- 0x22, 0x7b, 0x0a, 0x11, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e,
- 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x1e, 0x0a, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d, 0x61, 0x6e,
- 0x4e, 0x75, 0x6d, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x75, 0x73, 0x65, 0x72, 0x4d,
- 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x73, 0x65, 0x72, 0x57, 0x6f, 0x6d,
- 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0c, 0x75, 0x73, 0x65,
- 0x72, 0x57, 0x6f, 0x6d, 0x61, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x22, 0x0a, 0x0c, 0x75, 0x73, 0x65,
- 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0c, 0x75, 0x73, 0x65, 0x72, 0x4f, 0x74, 0x68, 0x65, 0x72, 0x4e, 0x75, 0x6d, 0x22, 0x84, 0x01,
- 0x0a, 0x2c, 0x53, 0x65, 0x6e, 0x64, 0x4f, 0x76, 0x65, 0x72, 0x4f, 0x6e, 0x65, 0x4d, 0x69, 0x6e,
- 0x75, 0x74, 0x65, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65,
- 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1a,
- 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1c, 0x0a, 0x09, 0x75, 0x6e,
- 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x09, 0x75,
- 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x61, 0x6d, 0x65,
- 0x4c, 0x69, 0x73, 0x74, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x61, 0x6d, 0x65,
- 0x4c, 0x69, 0x73, 0x74, 0x22, 0x66, 0x0a, 0x1c, 0x47, 0x65, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x6d,
- 0x6d, 0x65, 0x6e, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x79, 0x70, 0x65, 0x18, 0x01, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x04, 0x74, 0x79, 0x70, 0x65, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18,
- 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x20, 0x0a, 0x0b, 0x69, 0x64,
- 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x18, 0x03, 0x20, 0x03, 0x28, 0x09, 0x52,
- 0x0b, 0x69, 0x64, 0x65, 0x6e, 0x74, 0x69, 0x66, 0x79, 0x49, 0x64, 0x73, 0x22, 0x78, 0x0a, 0x1c,
- 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72,
- 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x16, 0x0a, 0x06,
- 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65,
- 0x78, 0x74, 0x49, 0x64, 0x12, 0x16, 0x0a, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6f, 0x66, 0x66, 0x73, 0x65, 0x74, 0x12, 0x16, 0x0a, 0x06,
- 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x22, 0x68, 0x0a, 0x1a, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78,
- 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x32, 0x0a, 0x04,
- 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x1e, 0x2e, 0x61, 0x70, 0x69,
- 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65,
- 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
- 0x22, 0xff, 0x02, 0x0a, 0x11, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f,
- 0x72, 0x64, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65,
- 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e,
- 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
- 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65,
- 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26,
- 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
- 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63,
- 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
- 0x75, 0x72, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61,
- 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
- 0x18, 0x06, 0x20, 0x03, 0x28, 0x09, 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73,
- 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65, 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73,
- 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03, 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x03, 0x70, 0x69, 0x64, 0x12, 0x24, 0x0a, 0x0d, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x65, 0x78, 0x61,
- 0x6d, 0x69, 0x6e, 0x65, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x0a, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x10, 0x0a, 0x03, 0x61, 0x67,
- 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x24, 0x0a, 0x0d,
- 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x0c, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69,
- 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65,
- 0x18, 0x0d, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74, 0x65, 0x54, 0x69,
- 0x6d, 0x65, 0x22, 0x5c, 0x0a, 0x14, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
- 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65,
- 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74,
- 0x49, 0x64, 0x12, 0x2c, 0x0a, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b,
- 0x32, 0x18, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45,
- 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74,
- 0x22, 0xe5, 0x02, 0x0a, 0x0b, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x49, 0x6e, 0x66, 0x6f,
- 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x1a,
- 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x76,
- 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61,
- 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72,
- 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65,
- 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x18, 0x05, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75, 0x72, 0x65, 0x12, 0x1a,
- 0x0a, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x18, 0x06, 0x20, 0x03, 0x28, 0x09,
- 0x52, 0x08, 0x70, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x73, 0x12, 0x10, 0x0a, 0x03, 0x73, 0x65,
- 0x78, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12, 0x10, 0x0a, 0x03,
- 0x70, 0x69, 0x64, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x70, 0x69, 0x64, 0x12, 0x10,
- 0x0a, 0x03, 0x61, 0x67, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65,
- 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f,
- 0x6e, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c,
- 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x1e, 0x0a, 0x0a, 0x77, 0x78, 0x4e, 0x69, 0x63, 0x6b,
- 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x77, 0x78, 0x4e, 0x69,
- 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x77, 0x78, 0x41, 0x76, 0x61, 0x74,
- 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0b, 0x77, 0x78, 0x41,
- 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x22, 0x4d, 0x0a, 0x15, 0x45, 0x78, 0x61, 0x6d,
- 0x69, 0x6e, 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73,
- 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12,
- 0x16, 0x0a, 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x18, 0x02, 0x20, 0x01, 0x28, 0x08, 0x52,
- 0x06, 0x69, 0x73, 0x50, 0x61, 0x73, 0x73, 0x22, 0x6d, 0x0a, 0x29, 0x50, 0x61, 0x72, 0x74, 0x6e,
- 0x65, 0x72, 0x47, 0x65, 0x74, 0x52, 0x6f, 0x6f, 0x6d, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65,
- 0x41, 0x6e, 0x64, 0x54, 0x6f, 0x64, 0x61, 0x79, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x12, 0x20, 0x0a, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f,
- 0x66, 0x69, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79,
- 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x72, 0x6f, 0x6f, 0x6d, 0x50, 0x72,
- 0x6f, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x72, 0x6f, 0x6f, 0x6d,
- 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x22, 0x58, 0x0a, 0x18, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
- 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65, 0x63, 0x74, 0x49, 0x44, 0x73, 0x52, 0x65, 0x71, 0x75, 0x65,
- 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
- 0x49, 0x64, 0x73, 0x18, 0x01, 0x20, 0x03, 0x28, 0x03, 0x52, 0x0d, 0x63, 0x68, 0x61, 0x74, 0x52,
- 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x73, 0x12, 0x16, 0x0a, 0x06, 0x72, 0x6f, 0x6f, 0x6d,
- 0x49, 0x64, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x06, 0x72, 0x6f, 0x6f, 0x6d, 0x49, 0x64,
- 0x22, 0x3b, 0x0a, 0x15, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x43, 0x6f, 0x6c, 0x6c, 0x65,
- 0x63, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x22, 0x0a, 0x0c, 0x63, 0x68, 0x61,
- 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x0c, 0x63, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x49, 0x64, 0x22, 0x48, 0x0a,
- 0x12, 0x43, 0x72, 0x65, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x12, 0x0a, 0x04, 0x74, 0x65, 0x78, 0x74, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x04, 0x74, 0x65, 0x78, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x70, 0x69, 0x63, 0x74, 0x75,
- 0x72, 0x65, 0x55, 0x72, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0a, 0x70, 0x69, 0x63,
- 0x74, 0x75, 0x72, 0x65, 0x55, 0x72, 0x6c, 0x22, 0x76, 0x0a, 0x11, 0x52, 0x65, 0x70, 0x6c, 0x79,
- 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07,
- 0x73, 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x73,
- 0x63, 0x72, 0x69, 0x70, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x07, 0x6d, 0x65, 0x73, 0x73, 0x61, 0x67,
- 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x0b, 0x32, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f,
- 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x52, 0x07, 0x6d, 0x65,
- 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x18, 0x0a, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x07, 0x6d, 0x73, 0x67, 0x54, 0x79, 0x70, 0x65, 0x22,
- 0x67, 0x0a, 0x1e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72,
- 0x61, 0x77, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c,
- 0x79, 0x12, 0x16, 0x0a, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28,
- 0x03, 0x52, 0x06, 0x6e, 0x65, 0x78, 0x74, 0x49, 0x64, 0x12, 0x2d, 0x0a, 0x04, 0x6c, 0x69, 0x73,
- 0x74, 0x18, 0x02, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x19, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61,
- 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e,
- 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0xbe, 0x01, 0x0a, 0x0c, 0x57, 0x69, 0x74,
- 0x68, 0x64, 0x72, 0x61, 0x77, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18,
- 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f, 0x6e,
- 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79, 0x12,
- 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52,
- 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x16, 0x0a, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75,
- 0x73, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x06, 0x73, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12,
- 0x16, 0x0a, 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x06, 0x72, 0x65, 0x73, 0x75, 0x6c, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x63, 0x72, 0x65, 0x61, 0x74,
- 0x65, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x63, 0x72, 0x65,
- 0x61, 0x74, 0x65, 0x54, 0x69, 0x6d, 0x65, 0x12, 0x20, 0x0a, 0x0b, 0x73, 0x75, 0x63, 0x63, 0x65,
- 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x73, 0x75,
- 0x63, 0x63, 0x65, 0x73, 0x73, 0x54, 0x69, 0x6d, 0x65, 0x22, 0x60, 0x0a, 0x20, 0x50, 0x61, 0x72,
- 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70,
- 0x6c, 0x61, 0x74, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x12, 0x3c, 0x0a,
- 0x04, 0x6c, 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x28, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
- 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65, 0x6d, 0x70, 0x6c, 0x61, 0x74,
- 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x71, 0x0a, 0x1b, 0x50,
- 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x54, 0x65,
- 0x6d, 0x70, 0x6c, 0x61, 0x74, 0x65, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a, 0x05, 0x6d, 0x6f,
- 0x6e, 0x65, 0x79, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6d, 0x6f, 0x6e, 0x65, 0x79,
- 0x12, 0x16, 0x0a, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x06, 0x63, 0x72, 0x65, 0x64, 0x69, 0x74, 0x12, 0x14, 0x0a, 0x05, 0x74, 0x69, 0x74, 0x6c,
- 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x09, 0x52, 0x05, 0x74, 0x69, 0x74, 0x6c, 0x65, 0x22, 0x49,
- 0x0a, 0x21, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x57,
- 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74,
- 0x61, 0x74, 0x75, 0x73, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x77, 0x6f, 0x72, 0x6b,
- 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0x72, 0x0a, 0x16, 0x50, 0x61, 0x72,
- 0x74, 0x6e, 0x65, 0x72, 0x47, 0x65, 0x74, 0x41, 0x77, 0x61, 0x72, 0x64, 0x52, 0x65, 0x71, 0x75,
- 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70, 0x65,
- 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x77, 0x61, 0x72, 0x64, 0x54, 0x79, 0x70,
- 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x49, 0x44, 0x12, 0x1e, 0x0a,
- 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x18, 0x03, 0x20, 0x01, 0x28,
- 0x09, 0x52, 0x0a, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x54, 0x79, 0x70, 0x65, 0x22, 0x38, 0x0a,
- 0x0a, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x54, 0x61, 0x62, 0x6c, 0x65, 0x12, 0x2a, 0x0a, 0x04, 0x6c,
- 0x69, 0x73, 0x74, 0x18, 0x01, 0x20, 0x03, 0x28, 0x0b, 0x32, 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x49, 0x6e, 0x66,
- 0x6f, 0x52, 0x04, 0x6c, 0x69, 0x73, 0x74, 0x22, 0x83, 0x01, 0x0a, 0x09, 0x4c, 0x65, 0x76, 0x65,
- 0x6c, 0x49, 0x6e, 0x66, 0x6f, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63,
- 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a,
- 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12,
- 0x1c, 0x0a, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x04, 0x20, 0x01,
- 0x28, 0x09, 0x52, 0x09, 0x63, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x22, 0x52, 0x0a,
- 0x18, 0x41, 0x64, 0x64, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61, 0x6e,
- 0x63, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72,
- 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x70, 0x61,
- 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e,
- 0x63, 0x65, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63,
- 0x65, 0x22, 0xe1, 0x03, 0x0a, 0x0b, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x6e, 0x66,
- 0x6f, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69,
- 0x64, 0x12, 0x1a, 0x0a, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x18, 0x02, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x08, 0x6e, 0x69, 0x63, 0x6b, 0x6e, 0x61, 0x6d, 0x65, 0x12, 0x1c, 0x0a,
- 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x18, 0x03, 0x20, 0x01, 0x28, 0x09,
- 0x52, 0x09, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x12, 0x10, 0x0a, 0x03, 0x61,
- 0x67, 0x65, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x61, 0x67, 0x65, 0x12, 0x10, 0x0a,
- 0x03, 0x73, 0x65, 0x78, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x03, 0x73, 0x65, 0x78, 0x12,
- 0x24, 0x0a, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c, 0x61, 0x74, 0x69, 0x6f, 0x6e,
- 0x18, 0x06, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x63, 0x6f, 0x6e, 0x73, 0x74, 0x65, 0x6c, 0x6c,
- 0x61, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x07,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x18, 0x0a, 0x07, 0x74,
- 0x61, 0x67, 0x4c, 0x69, 0x73, 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x03, 0x52, 0x07, 0x74, 0x61,
- 0x67, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x0a, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74, 0x75,
- 0x72, 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x09, 0x52, 0x09, 0x73, 0x69, 0x67, 0x6e, 0x61, 0x74,
- 0x75, 0x72, 0x65, 0x12, 0x26, 0x0a, 0x0e, 0x69, 0x6e, 0x74, 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65,
- 0x56, 0x6f, 0x69, 0x63, 0x65, 0x18, 0x0a, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x69, 0x6e, 0x74,
- 0x72, 0x6f, 0x64, 0x75, 0x63, 0x65, 0x56, 0x6f, 0x69, 0x63, 0x65, 0x12, 0x1a, 0x0a, 0x08, 0x70,
- 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x18, 0x0b, 0x20, 0x01, 0x28, 0x09, 0x52, 0x08, 0x70,
- 0x72, 0x6f, 0x76, 0x69, 0x6e, 0x63, 0x65, 0x12, 0x12, 0x0a, 0x04, 0x63, 0x69, 0x74, 0x79, 0x18,
- 0x0c, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x63, 0x69, 0x74, 0x79, 0x12, 0x12, 0x0a, 0x04, 0x61,
- 0x72, 0x65, 0x61, 0x18, 0x0d, 0x20, 0x01, 0x28, 0x09, 0x52, 0x04, 0x61, 0x72, 0x65, 0x61, 0x12,
- 0x1c, 0x0a, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x18, 0x0e, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x09, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x49, 0x64, 0x12, 0x18, 0x0a,
- 0x07, 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x18, 0x0f, 0x20, 0x01, 0x28, 0x08, 0x52, 0x07,
- 0x69, 0x73, 0x42, 0x6c, 0x61, 0x63, 0x6b, 0x12, 0x24, 0x0a, 0x0d, 0x77, 0x6f, 0x72, 0x6b, 0x69,
- 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18, 0x10, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d,
- 0x77, 0x6f, 0x72, 0x6b, 0x69, 0x6e, 0x67, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x12, 0x26, 0x0a,
- 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53, 0x74, 0x61, 0x74, 0x75, 0x73, 0x18,
- 0x11, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0e, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x53,
- 0x74, 0x61, 0x74, 0x75, 0x73, 0x22, 0xb8, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65,
- 0x72, 0x4d, 0x65, 0x73, 0x73, 0x61, 0x67, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01,
- 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x6f, 0x6f, 0x6b,
- 0x4e, 0x75, 0x6d, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x6f, 0x6f, 0x6b, 0x4e,
- 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64,
- 0x4e, 0x75, 0x6d, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0d, 0x6c, 0x6f, 0x6f, 0x6b, 0x55,
- 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x2c, 0x0a, 0x11, 0x74, 0x6f, 0x64, 0x61,
- 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74, 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x18, 0x04, 0x20,
- 0x01, 0x28, 0x03, 0x52, 0x11, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x52, 0x65, 0x63, 0x65, 0x70, 0x74,
- 0x69, 0x6f, 0x6e, 0x4e, 0x75, 0x6d, 0x12, 0x24, 0x0a, 0x0d, 0x72, 0x65, 0x76, 0x65, 0x72, 0x73,
- 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x18, 0x05, 0x20, 0x01, 0x28, 0x09, 0x52, 0x0d, 0x72,
- 0x65, 0x76, 0x65, 0x72, 0x73, 0x69, 0x6f, 0x6e, 0x52, 0x61, 0x74, 0x65, 0x12, 0x1a, 0x0a, 0x08,
- 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x08,
- 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x4e, 0x75, 0x6d, 0x12, 0x26, 0x0a, 0x0e, 0x6c, 0x69, 0x6b, 0x65,
- 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d, 0x18, 0x07, 0x20, 0x01, 0x28, 0x03,
- 0x52, 0x0e, 0x6c, 0x69, 0x6b, 0x65, 0x64, 0x55, 0x6e, 0x72, 0x65, 0x61, 0x64, 0x4e, 0x75, 0x6d,
- 0x12, 0x24, 0x0a, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55, 0x72, 0x6c, 0x4c, 0x69, 0x73,
- 0x74, 0x18, 0x08, 0x20, 0x03, 0x28, 0x09, 0x52, 0x0d, 0x61, 0x76, 0x61, 0x74, 0x61, 0x72, 0x55,
- 0x72, 0x6c, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x18, 0x0a, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75,
- 0x6d, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x6c, 0x69, 0x6b, 0x65, 0x4e, 0x75, 0x6d,
- 0x22, 0xb6, 0x02, 0x0a, 0x0e, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x42, 0x61, 0x6c, 0x61,
- 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a, 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52,
- 0x02, 0x69, 0x64, 0x12, 0x18, 0x0a, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x18, 0x02,
- 0x20, 0x01, 0x28, 0x03, 0x52, 0x07, 0x62, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x20, 0x0a,
- 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x18, 0x03, 0x20, 0x01,
- 0x28, 0x03, 0x52, 0x0b, 0x74, 0x6f, 0x64, 0x61, 0x79, 0x50, 0x72, 0x6f, 0x66, 0x69, 0x74, 0x12,
- 0x14, 0x0a, 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05,
- 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e,
- 0x65, 0x66, 0x69, 0x74, 0x18, 0x05, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74,
- 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42,
- 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x06, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61,
- 0x6c, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a, 0x10, 0x75, 0x70, 0x4c,
- 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64, 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x18, 0x07, 0x20,
- 0x01, 0x28, 0x09, 0x52, 0x10, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x43, 0x6f, 0x6e, 0x64,
- 0x69, 0x74, 0x69, 0x6f, 0x6e, 0x12, 0x26, 0x0a, 0x0e, 0x75, 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c,
- 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x18, 0x08, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0e, 0x75,
- 0x70, 0x4c, 0x65, 0x76, 0x65, 0x6c, 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x2a, 0x0a,
- 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74, 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d,
- 0x65, 0x18, 0x09, 0x20, 0x01, 0x28, 0x03, 0x52, 0x10, 0x63, 0x75, 0x6d, 0x75, 0x6c, 0x61, 0x74,
- 0x69, 0x76, 0x65, 0x49, 0x6e, 0x63, 0x6f, 0x6d, 0x65, 0x22, 0x7c, 0x0a, 0x10, 0x50, 0x61, 0x72,
- 0x74, 0x6e, 0x65, 0x72, 0x44, 0x42, 0x42, 0x61, 0x6c, 0x61, 0x6e, 0x63, 0x65, 0x12, 0x0e, 0x0a,
- 0x02, 0x69, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x09, 0x52, 0x02, 0x69, 0x64, 0x12, 0x14, 0x0a,
- 0x05, 0x6c, 0x65, 0x76, 0x65, 0x6c, 0x18, 0x02, 0x20, 0x01, 0x28, 0x03, 0x52, 0x05, 0x6c, 0x65,
- 0x76, 0x65, 0x6c, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65, 0x6e, 0x65, 0x66,
- 0x69, 0x74, 0x18, 0x03, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x68, 0x61, 0x74, 0x42, 0x65,
- 0x6e, 0x65, 0x66, 0x69, 0x74, 0x12, 0x20, 0x0a, 0x0b, 0x63, 0x61, 0x6c, 0x6c, 0x42, 0x65, 0x6e,
- 0x65, 0x66, 0x69, 0x74, 0x18, 0x04, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0b, 0x63, 0x61, 0x6c, 0x6c,
- 0x42, 0x65, 0x6e, 0x65, 0x66, 0x69, 0x74, 0x22, 0x3d, 0x0a, 0x1b, 0x50, 0x61, 0x72, 0x74, 0x6e,
- 0x65, 0x72, 0x41, 0x70, 0x70, 0x6c, 0x79, 0x57, 0x69, 0x74, 0x68, 0x64, 0x72, 0x61, 0x77, 0x52,
- 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x12, 0x1e, 0x0a, 0x0a, 0x74, 0x65, 0x6d, 0x70, 0x6c, 0x61,
- 0x74, 0x65, 0x49, 0x64, 0x18, 0x01, 0x20, 0x01, 0x28, 0x03, 0x52, 0x0a, 0x74, 0x65, 0x6d, 0x70,
- 0x6c, 0x61, 0x74, 0x65, 0x49, 0x64, 0x32, 0xe1, 0x0d, 0x0a, 0x07, 0x50, 0x61, 0x72, 0x74, 0x6e,
- 0x65, 0x72, 0x12, 0x81, 0x01, 0x0a, 0x0f, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69,
- 0x6e, 0x65, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x1c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d,
- 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x69, 0x73, 0x74, 0x50, 0x61, 0x67, 0x65, 0x32, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x21, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e,
- 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x4c, 0x69,
- 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x27, 0x3a,
- 0x01, 0x2a, 0x22, 0x22, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
- 0x2f, 0x72, 0x65, 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e,
- 0x65, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x76, 0x0a, 0x0e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e,
- 0x65, 0x50, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x12, 0x22, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70,
- 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x50, 0x61,
- 0x72, 0x74, 0x6e, 0x65, 0x72, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x28, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x22, 0x3a, 0x01, 0x2a, 0x22,
- 0x1d, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2f, 0x72, 0x65,
- 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x12, 0x66,
- 0x0a, 0x0c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0x1f,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x4c, 0x6f, 0x67, 0x69, 0x6e, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x16, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4c, 0x6f, 0x67,
- 0x69, 0x6e, 0x54, 0x6f, 0x6b, 0x65, 0x6e, 0x22, 0x1d, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x17, 0x3a,
- 0x01, 0x2a, 0x22, 0x12, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x2f, 0x6c, 0x6f, 0x67, 0x69, 0x6e, 0x12, 0xa1, 0x01, 0x0a, 0x15, 0x46, 0x69, 0x6e, 0x64, 0x45,
- 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
- 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46,
- 0x69, 0x6e, 0x64, 0x45, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64,
- 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x27, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x2e, 0x46, 0x69, 0x6e, 0x64, 0x45, 0x78,
- 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52,
- 0x65, 0x70, 0x6c, 0x79, 0x22, 0x34, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x2e, 0x3a, 0x01, 0x2a, 0x22,
- 0x29, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x65,
- 0x67, 0x69, 0x73, 0x74, 0x65, 0x72, 0x2f, 0x65, 0x78, 0x61, 0x6d, 0x69, 0x6e, 0x65, 0x2f, 0x72,
- 0x65, 0x63, 0x6f, 0x72, 0x64, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x6d, 0x0a, 0x0c, 0x4f, 0x6e,
- 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x16, 0x2e, 0x67, 0x6f, 0x6f,
- 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45, 0x6d, 0x70,
- 0x74, 0x79, 0x1a, 0x1e, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72,
- 0x2e, 0x4f, 0x6e, 0x6c, 0x69, 0x6e, 0x65, 0x50, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x52, 0x65, 0x70,
- 0x6c, 0x79, 0x22, 0x25, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1f, 0x3a, 0x01, 0x2a, 0x22, 0x1a, 0x2f,
- 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x6f, 0x6e, 0x6c, 0x69,
- 0x6e, 0x65, 0x2f, 0x70, 0x65, 0x72, 0x73, 0x6f, 0x6e, 0x12, 0x86, 0x01, 0x0a, 0x13, 0x4d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73,
- 0x74, 0x12, 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69,
- 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x24, 0x2e, 0x61, 0x70, 0x69, 0x2e,
- 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
- 0x6e, 0x64, 0x52, 0x6f, 0x6f, 0x6d, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
- 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x3a, 0x01, 0x2a, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
- 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x6f, 0x6f, 0x6d, 0x2f, 0x6c, 0x69,
- 0x73, 0x74, 0x12, 0x8d, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
- 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74,
- 0x12, 0x2c, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61,
- 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x43, 0x68, 0x61, 0x74, 0x52, 0x65, 0x63,
- 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1f,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x43, 0x68, 0x61, 0x74,
- 0x52, 0x65, 0x63, 0x6f, 0x72, 0x64, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22,
- 0x21, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1b, 0x3a, 0x01, 0x2a, 0x22, 0x16, 0x2f, 0x61, 0x70, 0x69,
- 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x63, 0x68, 0x61, 0x74, 0x2f, 0x6c, 0x69,
- 0x73, 0x74, 0x12, 0x82, 0x01, 0x0a, 0x14, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69,
- 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x27, 0x2e, 0x61, 0x70,
- 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x46, 0x69, 0x6e, 0x64, 0x53, 0x63, 0x72, 0x69, 0x70, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71,
- 0x75, 0x65, 0x73, 0x74, 0x1a, 0x1d, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f,
- 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x53, 0x63, 0x72, 0x69, 0x70, 0x52, 0x65,
- 0x70, 0x6c, 0x79, 0x22, 0x22, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1c, 0x3a, 0x01, 0x2a, 0x22, 0x17,
- 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x73, 0x63, 0x72,
- 0x69, 0x70, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0x86, 0x01, 0x0a, 0x16, 0x4d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x54, 0x65,
- 0x78, 0x74, 0x12, 0x29, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e,
- 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72,
- 0x69, 0x70, 0x54, 0x65, 0x78, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x29, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x23, 0x3a, 0x01, 0x2a,
- 0x22, 0x1e, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75,
- 0x70, 0x64, 0x61, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x74, 0x65, 0x78, 0x74,
- 0x12, 0x8f, 0x01, 0x0a, 0x19, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61,
- 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69, 0x63, 0x74, 0x75, 0x72, 0x65, 0x12, 0x2c,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x55, 0x70, 0x64, 0x61, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x50, 0x69,
- 0x63, 0x74, 0x75, 0x72, 0x65, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x16, 0x2e, 0x67,
- 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e, 0x45,
- 0x6d, 0x70, 0x74, 0x79, 0x22, 0x2c, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x26, 0x3a, 0x01, 0x2a, 0x22,
- 0x21, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x75, 0x70,
- 0x64, 0x61, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x2f, 0x70, 0x69, 0x63, 0x74, 0x75,
- 0x72, 0x65, 0x12, 0x67, 0x0a, 0x12, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x44, 0x65, 0x6c,
- 0x65, 0x74, 0x65, 0x53, 0x63, 0x72, 0x69, 0x70, 0x12, 0x13, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63,
- 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x49, 0x44, 0x50, 0x61, 0x72, 0x61, 0x6d, 0x1a, 0x16, 0x2e,
- 0x67, 0x6f, 0x6f, 0x67, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2e,
- 0x45, 0x6d, 0x70, 0x74, 0x79, 0x22, 0x24, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1e, 0x3a, 0x01, 0x2a,
- 0x22, 0x19, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x64,
- 0x65, 0x6c, 0x65, 0x74, 0x65, 0x2f, 0x73, 0x63, 0x72, 0x69, 0x70, 0x12, 0x8e, 0x01, 0x0a, 0x15,
- 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72,
- 0x74, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x28, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d,
- 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65,
- 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a,
- 0x26, 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e,
- 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x4c, 0x69,
- 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x23, 0x82, 0xd3, 0xe4, 0x93, 0x02, 0x1d, 0x3a,
- 0x01, 0x2a, 0x22, 0x18, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72,
- 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x12, 0xab, 0x01, 0x0a,
- 0x1c, 0x4d, 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f,
- 0x72, 0x74, 0x44, 0x65, 0x74, 0x61, 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x12, 0x2f, 0x2e,
- 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61, 0x67,
- 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74, 0x61,
- 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x71, 0x75, 0x65, 0x73, 0x74, 0x1a, 0x2d,
- 0x2e, 0x61, 0x70, 0x69, 0x2e, 0x63, 0x6f, 0x6d, 0x6d, 0x6f, 0x6e, 0x2e, 0x4d, 0x61, 0x6e, 0x61,
- 0x67, 0x65, 0x72, 0x46, 0x69, 0x6e, 0x64, 0x52, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x44, 0x65, 0x74,
- 0x61, 0x69, 0x6c, 0x73, 0x4c, 0x69, 0x73, 0x74, 0x52, 0x65, 0x70, 0x6c, 0x79, 0x22, 0x2b, 0x82,
- 0xd3, 0xe4, 0x93, 0x02, 0x25, 0x3a, 0x01, 0x2a, 0x22, 0x20, 0x2f, 0x61, 0x70, 0x69, 0x2f, 0x6d,
- 0x61, 0x6e, 0x61, 0x67, 0x65, 0x72, 0x2f, 0x72, 0x65, 0x70, 0x6f, 0x72, 0x74, 0x2f, 0x64, 0x65,
- 0x74, 0x61, 0x69, 0x6c, 0x73, 0x2f, 0x6c, 0x69, 0x73, 0x74, 0x42, 0x46, 0x0a, 0x0b, 0x61, 0x70,
- 0x69, 0x2e, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x50, 0x01, 0x5a, 0x35, 0x67, 0x69, 0x74,
- 0x2e, 0x69, 0x6b, 0x75, 0x62, 0x61, 0x6e, 0x2e, 0x63, 0x6f, 0x6d, 0x2f, 0x73, 0x65, 0x72, 0x76,
- 0x65, 0x72, 0x2f, 0x70, 0x77, 0x2d, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x62, 0x75, 0x66, 0x2f, 0x61,
- 0x70, 0x69, 0x2f, 0x70, 0x61, 0x72, 0x74, 0x6e, 0x65, 0x72, 0x3b, 0x70, 0x61, 0x72, 0x74, 0x6e,
- 0x65, 0x72, 0x62, 0x06, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x33,
- }
- var (
- file_partner_proto_rawDescOnce sync.Once
- file_partner_proto_rawDescData = file_partner_proto_rawDesc
- )
- func file_partner_proto_rawDescGZIP() []byte {
- file_partner_proto_rawDescOnce.Do(func() {
- file_partner_proto_rawDescData = protoimpl.X.CompressGZIP(file_partner_proto_rawDescData)
- })
- return file_partner_proto_rawDescData
- }
- var file_partner_proto_msgTypes = make([]protoimpl.MessageInfo, 28)
- var file_partner_proto_goTypes = []interface{}{
- (*OnlinePersonReply)(nil), // 0: api.partner.OnlinePersonReply
- (*SendOverOneMinuteUnreadMessageMessageRequest)(nil), // 1: api.partner.SendOverOneMinuteUnreadMessageMessageRequest
- (*GetRecommendPartnerDBRequest)(nil), // 2: api.partner.GetRecommendPartnerDBRequest
- (*FindExamineRecordListRequest)(nil), // 3: api.partner.FindExamineRecordListRequest
- (*FindExamineRecordListReply)(nil), // 4: api.partner.FindExamineRecordListReply
- (*ExamineRecordInfo)(nil), // 5: api.partner.ExamineRecordInfo
- (*FindExamineListReply)(nil), // 6: api.partner.FindExamineListReply
- (*ExamineInfo)(nil), // 7: api.partner.ExamineInfo
- (*ExaminePartnerRequest)(nil), // 8: api.partner.ExaminePartnerRequest
- (*PartnerGetRoomBalanceAndTodayBalanceReply)(nil), // 9: api.partner.PartnerGetRoomBalanceAndTodayBalanceReply
- (*PartnerCollectIDsRequest)(nil), // 10: api.partner.PartnerCollectIDsRequest
- (*PartnerCollectRequest)(nil), // 11: api.partner.PartnerCollectRequest
- (*CreateScripRequest)(nil), // 12: api.partner.CreateScripRequest
- (*ReplyScripRequest)(nil), // 13: api.partner.ReplyScripRequest
- (*PartnerWithdrawRecordListReply)(nil), // 14: api.partner.PartnerWithdrawRecordListReply
- (*WithdrawInfo)(nil), // 15: api.partner.WithdrawInfo
- (*PartnerWithdrawTemplateListReply)(nil), // 16: api.partner.PartnerWithdrawTemplateListReply
- (*PartnerWithdrawTemplateInfo)(nil), // 17: api.partner.PartnerWithdrawTemplateInfo
- (*PartnerUpdateWorkingStatusRequest)(nil), // 18: api.partner.PartnerUpdateWorkingStatusRequest
- (*PartnerGetAwardRequest)(nil), // 19: api.partner.PartnerGetAwardRequest
- (*LevelTable)(nil), // 20: api.partner.LevelTable
- (*LevelInfo)(nil), // 21: api.partner.LevelInfo
- (*AddPartnerBalanceRequest)(nil), // 22: api.partner.AddPartnerBalanceRequest
- (*PartnerInfo)(nil), // 23: api.partner.PartnerInfo
- (*PartnerMessage)(nil), // 24: api.partner.PartnerMessage
- (*PartnerBalance)(nil), // 25: api.partner.PartnerBalance
- (*PartnerDBBalance)(nil), // 26: api.partner.PartnerDBBalance
- (*PartnerApplyWithdrawRequest)(nil), // 27: api.partner.PartnerApplyWithdrawRequest
- (*common.Message)(nil), // 28: api.common.Message
- (*common.ListPage2Request)(nil), // 29: api.common.ListPage2Request
- (*common.ManagerLoginRequest)(nil), // 30: api.common.ManagerLoginRequest
- (*emptypb.Empty)(nil), // 31: google.protobuf.Empty
- (*common.ManagerFindRoomListRequest)(nil), // 32: api.common.ManagerFindRoomListRequest
- (*common.ManagerFindChatRecordListRequest)(nil), // 33: api.common.ManagerFindChatRecordListRequest
- (*common.ManagerFindScripListRequest)(nil), // 34: api.common.ManagerFindScripListRequest
- (*common.ManagerUpdateScripTextRequest)(nil), // 35: api.common.ManagerUpdateScripTextRequest
- (*common.ManagerUpdateScripPictureRequest)(nil), // 36: api.common.ManagerUpdateScripPictureRequest
- (*common.IDParam)(nil), // 37: api.common.IDParam
- (*common.ManagerFindReportListRequest)(nil), // 38: api.common.ManagerFindReportListRequest
- (*common.ManagerFindReportDetailsListRequest)(nil), // 39: api.common.ManagerFindReportDetailsListRequest
- (*common.LoginToken)(nil), // 40: api.common.LoginToken
- (*common.ManagerFindRoomListReply)(nil), // 41: api.common.ManagerFindRoomListReply
- (*common.ChatRecordListReply)(nil), // 42: api.common.ChatRecordListReply
- (*common.ManagerScripReply)(nil), // 43: api.common.ManagerScripReply
- (*common.ManagerFindReportListReply)(nil), // 44: api.common.ManagerFindReportListReply
- (*common.ManagerFindReportDetailsListReply)(nil), // 45: api.common.ManagerFindReportDetailsListReply
- }
- var file_partner_proto_depIdxs = []int32{
- 5, // 0: api.partner.FindExamineRecordListReply.list:type_name -> api.partner.ExamineRecordInfo
- 7, // 1: api.partner.FindExamineListReply.list:type_name -> api.partner.ExamineInfo
- 28, // 2: api.partner.ReplyScripRequest.message:type_name -> api.common.Message
- 15, // 3: api.partner.PartnerWithdrawRecordListReply.list:type_name -> api.partner.WithdrawInfo
- 17, // 4: api.partner.PartnerWithdrawTemplateListReply.list:type_name -> api.partner.PartnerWithdrawTemplateInfo
- 21, // 5: api.partner.LevelTable.list:type_name -> api.partner.LevelInfo
- 29, // 6: api.partner.Partner.FindExamineList:input_type -> api.common.ListPage2Request
- 8, // 7: api.partner.Partner.ExaminePartner:input_type -> api.partner.ExaminePartnerRequest
- 30, // 8: api.partner.Partner.ManagerLogin:input_type -> api.common.ManagerLoginRequest
- 3, // 9: api.partner.Partner.FindExamineRecordList:input_type -> api.partner.FindExamineRecordListRequest
- 31, // 10: api.partner.Partner.OnlinePerson:input_type -> google.protobuf.Empty
- 32, // 11: api.partner.Partner.ManagerFindRoomList:input_type -> api.common.ManagerFindRoomListRequest
- 33, // 12: api.partner.Partner.ManagerFindChatRecordList:input_type -> api.common.ManagerFindChatRecordListRequest
- 34, // 13: api.partner.Partner.ManagerFindScripList:input_type -> api.common.ManagerFindScripListRequest
- 35, // 14: api.partner.Partner.ManagerUpdateScripText:input_type -> api.common.ManagerUpdateScripTextRequest
- 36, // 15: api.partner.Partner.ManagerUpdateScripPicture:input_type -> api.common.ManagerUpdateScripPictureRequest
- 37, // 16: api.partner.Partner.ManagerDeleteScrip:input_type -> api.common.IDParam
- 38, // 17: api.partner.Partner.ManagerFindReportList:input_type -> api.common.ManagerFindReportListRequest
- 39, // 18: api.partner.Partner.ManagerFindReportDetailsList:input_type -> api.common.ManagerFindReportDetailsListRequest
- 6, // 19: api.partner.Partner.FindExamineList:output_type -> api.partner.FindExamineListReply
- 31, // 20: api.partner.Partner.ExaminePartner:output_type -> google.protobuf.Empty
- 40, // 21: api.partner.Partner.ManagerLogin:output_type -> api.common.LoginToken
- 4, // 22: api.partner.Partner.FindExamineRecordList:output_type -> api.partner.FindExamineRecordListReply
- 0, // 23: api.partner.Partner.OnlinePerson:output_type -> api.partner.OnlinePersonReply
- 41, // 24: api.partner.Partner.ManagerFindRoomList:output_type -> api.common.ManagerFindRoomListReply
- 42, // 25: api.partner.Partner.ManagerFindChatRecordList:output_type -> api.common.ChatRecordListReply
- 43, // 26: api.partner.Partner.ManagerFindScripList:output_type -> api.common.ManagerScripReply
- 31, // 27: api.partner.Partner.ManagerUpdateScripText:output_type -> google.protobuf.Empty
- 31, // 28: api.partner.Partner.ManagerUpdateScripPicture:output_type -> google.protobuf.Empty
- 31, // 29: api.partner.Partner.ManagerDeleteScrip:output_type -> google.protobuf.Empty
- 44, // 30: api.partner.Partner.ManagerFindReportList:output_type -> api.common.ManagerFindReportListReply
- 45, // 31: api.partner.Partner.ManagerFindReportDetailsList:output_type -> api.common.ManagerFindReportDetailsListReply
- 19, // [19:32] is the sub-list for method output_type
- 6, // [6:19] is the sub-list for method input_type
- 6, // [6:6] is the sub-list for extension type_name
- 6, // [6:6] is the sub-list for extension extendee
- 0, // [0:6] is the sub-list for field type_name
- }
- func init() { file_partner_proto_init() }
- func file_partner_proto_init() {
- if File_partner_proto != nil {
- return
- }
- if !protoimpl.UnsafeEnabled {
- file_partner_proto_msgTypes[0].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*OnlinePersonReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[1].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*SendOverOneMinuteUnreadMessageMessageRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[2].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*GetRecommendPartnerDBRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[3].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindExamineRecordListRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[4].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindExamineRecordListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[5].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineRecordInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[6].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*FindExamineListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[7].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExamineInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[8].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ExaminePartnerRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[9].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerGetRoomBalanceAndTodayBalanceReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[10].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerCollectIDsRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[11].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerCollectRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[12].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*CreateScripRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[13].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*ReplyScripRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[14].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerWithdrawRecordListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[15].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*WithdrawInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[16].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerWithdrawTemplateListReply); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[17].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerWithdrawTemplateInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[18].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerUpdateWorkingStatusRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[19].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerGetAwardRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[20].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*LevelTable); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[21].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*LevelInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[22].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*AddPartnerBalanceRequest); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[23].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerInfo); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[24].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerMessage); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[25].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerBalance); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[26].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerDBBalance); i {
- case 0:
- return &v.state
- case 1:
- return &v.sizeCache
- case 2:
- return &v.unknownFields
- default:
- return nil
- }
- }
- file_partner_proto_msgTypes[27].Exporter = func(v interface{}, i int) interface{} {
- switch v := v.(*PartnerApplyWithdrawRequest); 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_partner_proto_rawDesc,
- NumEnums: 0,
- NumMessages: 28,
- NumExtensions: 0,
- NumServices: 1,
- },
- GoTypes: file_partner_proto_goTypes,
- DependencyIndexes: file_partner_proto_depIdxs,
- MessageInfos: file_partner_proto_msgTypes,
- }.Build()
- File_partner_proto = out.File
- file_partner_proto_rawDesc = nil
- file_partner_proto_goTypes = nil
- file_partner_proto_depIdxs = nil
- }
|