WAArmadilloApplication.pb.go 143 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.10
  4. // protoc v3.21.12
  5. // source: waArmadilloApplication/WAArmadilloApplication.proto
  6. package waArmadilloApplication
  7. import (
  8. reflect "reflect"
  9. sync "sync"
  10. unsafe "unsafe"
  11. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  12. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  13. waArmadilloXMA "git.bobomao.top/joey/testwh/proto/waArmadilloXMA"
  14. waCommon "git.bobomao.top/joey/testwh/proto/waCommon"
  15. )
  16. const (
  17. // Verify that this generated code is sufficiently up-to-date.
  18. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  19. // Verify that runtime/protoimpl is sufficiently up-to-date.
  20. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  21. )
  22. type Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus int32
  23. const (
  24. Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 1
  25. Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_CLOSE Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 2
  26. )
  27. // Enum value maps for Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.
  28. var (
  29. Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_name = map[int32]string{
  30. 1: "ES_OPEN",
  31. 2: "ES_CLOSE",
  32. }
  33. Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_value = map[string]int32{
  34. "ES_OPEN": 1,
  35. "ES_CLOSE": 2,
  36. }
  37. )
  38. func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Enum() *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
  39. p := new(Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)
  40. *p = x
  41. return p
  42. }
  43. func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) String() string {
  44. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  45. }
  46. func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Descriptor() protoreflect.EnumDescriptor {
  47. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0].Descriptor()
  48. }
  49. func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Type() protoreflect.EnumType {
  50. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0]
  51. }
  52. func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Number() protoreflect.EnumNumber {
  53. return protoreflect.EnumNumber(x)
  54. }
  55. // Deprecated: Do not use.
  56. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) UnmarshalJSON(b []byte) error {
  57. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  58. if err != nil {
  59. return err
  60. }
  61. *x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus(num)
  62. return nil
  63. }
  64. // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.Descriptor instead.
  65. func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) EnumDescriptor() ([]byte, []int) {
  66. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0, 0}
  67. }
  68. type Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType int32
  69. const (
  70. Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_UNKNOWN Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType = 0
  71. Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_NUDE Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType = 1
  72. Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_NOT_NUDE Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType = 2
  73. )
  74. // Enum value maps for Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType.
  75. var (
  76. Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType_name = map[int32]string{
  77. 0: "UNKNOWN",
  78. 1: "NUDE",
  79. 2: "NOT_NUDE",
  80. }
  81. Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType_value = map[string]int32{
  82. "UNKNOWN": 0,
  83. "NUDE": 1,
  84. "NOT_NUDE": 2,
  85. }
  86. )
  87. func (x Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Enum() *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType {
  88. p := new(Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType)
  89. *p = x
  90. return p
  91. }
  92. func (x Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) String() string {
  93. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  94. }
  95. func (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Descriptor() protoreflect.EnumDescriptor {
  96. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1].Descriptor()
  97. }
  98. func (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Type() protoreflect.EnumType {
  99. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1]
  100. }
  101. func (x Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Number() protoreflect.EnumNumber {
  102. return protoreflect.EnumNumber(x)
  103. }
  104. // Deprecated: Do not use.
  105. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) UnmarshalJSON(b []byte) error {
  106. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  107. if err != nil {
  108. return err
  109. }
  110. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType(num)
  111. return nil
  112. }
  113. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType.Descriptor instead.
  114. func (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) EnumDescriptor() ([]byte, []int) {
  115. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0, 0}
  116. }
  117. type Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType int32
  118. const (
  119. Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_TAKEDOWN Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType = 0
  120. Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_RESTORE Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType = 1
  121. )
  122. // Enum value maps for Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType.
  123. var (
  124. Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType_name = map[int32]string{
  125. 0: "TAKEDOWN",
  126. 1: "RESTORE",
  127. }
  128. Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType_value = map[string]int32{
  129. "TAKEDOWN": 0,
  130. "RESTORE": 1,
  131. }
  132. )
  133. func (x Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Enum() *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType {
  134. p := new(Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType)
  135. *p = x
  136. return p
  137. }
  138. func (x Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) String() string {
  139. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  140. }
  141. func (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Descriptor() protoreflect.EnumDescriptor {
  142. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2].Descriptor()
  143. }
  144. func (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Type() protoreflect.EnumType {
  145. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2]
  146. }
  147. func (x Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Number() protoreflect.EnumNumber {
  148. return protoreflect.EnumNumber(x)
  149. }
  150. // Deprecated: Do not use.
  151. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) UnmarshalJSON(b []byte) error {
  152. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  153. if err != nil {
  154. return err
  155. }
  156. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType(num)
  157. return nil
  158. }
  159. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType.Descriptor instead.
  160. func (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) EnumDescriptor() ([]byte, []int) {
  161. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 0}
  162. }
  163. type Armadillo_Content_PaymentsTransactionMessage_PaymentStatus int32
  164. const (
  165. Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 0
  166. Armadillo_Content_PaymentsTransactionMessage_REQUEST_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 4
  167. Armadillo_Content_PaymentsTransactionMessage_REQUEST_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 5
  168. Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 6
  169. Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 7
  170. Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_FAILED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 8
  171. Armadillo_Content_PaymentsTransactionMessage_REQUEST_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 9
  172. Armadillo_Content_PaymentsTransactionMessage_REQUEST_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 10
  173. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 11
  174. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 12
  175. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING_RECIPIENT_VERIFICATION Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 13
  176. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 14
  177. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 15
  178. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 16
  179. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 17
  180. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_REFUNDED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 18
  181. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PARTIAL_REFUND Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 19
  182. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CHARGED_BACK Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 20
  183. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 21
  184. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 22
  185. Armadillo_Content_PaymentsTransactionMessage_TRANSFER_UNAVAILABLE Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 23
  186. )
  187. // Enum value maps for Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.
  188. var (
  189. Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_name = map[int32]string{
  190. 0: "PAYMENT_UNKNOWN",
  191. 4: "REQUEST_INITED",
  192. 5: "REQUEST_DECLINED",
  193. 6: "REQUEST_TRANSFER_INITED",
  194. 7: "REQUEST_TRANSFER_COMPLETED",
  195. 8: "REQUEST_TRANSFER_FAILED",
  196. 9: "REQUEST_CANCELED",
  197. 10: "REQUEST_EXPIRED",
  198. 11: "TRANSFER_INITED",
  199. 12: "TRANSFER_PENDING",
  200. 13: "TRANSFER_PENDING_RECIPIENT_VERIFICATION",
  201. 14: "TRANSFER_CANCELED",
  202. 15: "TRANSFER_COMPLETED",
  203. 16: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED",
  204. 17: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER",
  205. 18: "TRANSFER_REFUNDED",
  206. 19: "TRANSFER_PARTIAL_REFUND",
  207. 20: "TRANSFER_CHARGED_BACK",
  208. 21: "TRANSFER_EXPIRED",
  209. 22: "TRANSFER_DECLINED",
  210. 23: "TRANSFER_UNAVAILABLE",
  211. }
  212. Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_value = map[string]int32{
  213. "PAYMENT_UNKNOWN": 0,
  214. "REQUEST_INITED": 4,
  215. "REQUEST_DECLINED": 5,
  216. "REQUEST_TRANSFER_INITED": 6,
  217. "REQUEST_TRANSFER_COMPLETED": 7,
  218. "REQUEST_TRANSFER_FAILED": 8,
  219. "REQUEST_CANCELED": 9,
  220. "REQUEST_EXPIRED": 10,
  221. "TRANSFER_INITED": 11,
  222. "TRANSFER_PENDING": 12,
  223. "TRANSFER_PENDING_RECIPIENT_VERIFICATION": 13,
  224. "TRANSFER_CANCELED": 14,
  225. "TRANSFER_COMPLETED": 15,
  226. "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED": 16,
  227. "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER": 17,
  228. "TRANSFER_REFUNDED": 18,
  229. "TRANSFER_PARTIAL_REFUND": 19,
  230. "TRANSFER_CHARGED_BACK": 20,
  231. "TRANSFER_EXPIRED": 21,
  232. "TRANSFER_DECLINED": 22,
  233. "TRANSFER_UNAVAILABLE": 23,
  234. }
  235. )
  236. func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Enum() *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
  237. p := new(Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)
  238. *p = x
  239. return p
  240. }
  241. func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) String() string {
  242. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  243. }
  244. func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Descriptor() protoreflect.EnumDescriptor {
  245. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3].Descriptor()
  246. }
  247. func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Type() protoreflect.EnumType {
  248. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3]
  249. }
  250. func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Number() protoreflect.EnumNumber {
  251. return protoreflect.EnumNumber(x)
  252. }
  253. // Deprecated: Do not use.
  254. func (x *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) UnmarshalJSON(b []byte) error {
  255. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  256. if err != nil {
  257. return err
  258. }
  259. *x = Armadillo_Content_PaymentsTransactionMessage_PaymentStatus(num)
  260. return nil
  261. }
  262. // Deprecated: Use Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.Descriptor instead.
  263. func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) EnumDescriptor() ([]byte, []int) {
  264. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0, 0}
  265. }
  266. type Armadillo_Content_ScreenshotAction_ScreenshotType int32
  267. const (
  268. Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE Armadillo_Content_ScreenshotAction_ScreenshotType = 1
  269. Armadillo_Content_ScreenshotAction_SCREEN_RECORDING Armadillo_Content_ScreenshotAction_ScreenshotType = 2
  270. )
  271. // Enum value maps for Armadillo_Content_ScreenshotAction_ScreenshotType.
  272. var (
  273. Armadillo_Content_ScreenshotAction_ScreenshotType_name = map[int32]string{
  274. 1: "SCREENSHOT_IMAGE",
  275. 2: "SCREEN_RECORDING",
  276. }
  277. Armadillo_Content_ScreenshotAction_ScreenshotType_value = map[string]int32{
  278. "SCREENSHOT_IMAGE": 1,
  279. "SCREEN_RECORDING": 2,
  280. }
  281. )
  282. func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Enum() *Armadillo_Content_ScreenshotAction_ScreenshotType {
  283. p := new(Armadillo_Content_ScreenshotAction_ScreenshotType)
  284. *p = x
  285. return p
  286. }
  287. func (x Armadillo_Content_ScreenshotAction_ScreenshotType) String() string {
  288. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  289. }
  290. func (Armadillo_Content_ScreenshotAction_ScreenshotType) Descriptor() protoreflect.EnumDescriptor {
  291. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4].Descriptor()
  292. }
  293. func (Armadillo_Content_ScreenshotAction_ScreenshotType) Type() protoreflect.EnumType {
  294. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4]
  295. }
  296. func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Number() protoreflect.EnumNumber {
  297. return protoreflect.EnumNumber(x)
  298. }
  299. // Deprecated: Do not use.
  300. func (x *Armadillo_Content_ScreenshotAction_ScreenshotType) UnmarshalJSON(b []byte) error {
  301. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  302. if err != nil {
  303. return err
  304. }
  305. *x = Armadillo_Content_ScreenshotAction_ScreenshotType(num)
  306. return nil
  307. }
  308. // Deprecated: Use Armadillo_Content_ScreenshotAction_ScreenshotType.Descriptor instead.
  309. func (Armadillo_Content_ScreenshotAction_ScreenshotType) EnumDescriptor() ([]byte, []int) {
  310. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5, 0}
  311. }
  312. type Armadillo_Content_RavenActionNotifMessage_ActionType int32
  313. const (
  314. Armadillo_Content_RavenActionNotifMessage_PLAYED Armadillo_Content_RavenActionNotifMessage_ActionType = 0
  315. Armadillo_Content_RavenActionNotifMessage_SCREENSHOT Armadillo_Content_RavenActionNotifMessage_ActionType = 1
  316. Armadillo_Content_RavenActionNotifMessage_FORCE_DISABLE Armadillo_Content_RavenActionNotifMessage_ActionType = 2
  317. )
  318. // Enum value maps for Armadillo_Content_RavenActionNotifMessage_ActionType.
  319. var (
  320. Armadillo_Content_RavenActionNotifMessage_ActionType_name = map[int32]string{
  321. 0: "PLAYED",
  322. 1: "SCREENSHOT",
  323. 2: "FORCE_DISABLE",
  324. }
  325. Armadillo_Content_RavenActionNotifMessage_ActionType_value = map[string]int32{
  326. "PLAYED": 0,
  327. "SCREENSHOT": 1,
  328. "FORCE_DISABLE": 2,
  329. }
  330. )
  331. func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Enum() *Armadillo_Content_RavenActionNotifMessage_ActionType {
  332. p := new(Armadillo_Content_RavenActionNotifMessage_ActionType)
  333. *p = x
  334. return p
  335. }
  336. func (x Armadillo_Content_RavenActionNotifMessage_ActionType) String() string {
  337. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  338. }
  339. func (Armadillo_Content_RavenActionNotifMessage_ActionType) Descriptor() protoreflect.EnumDescriptor {
  340. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5].Descriptor()
  341. }
  342. func (Armadillo_Content_RavenActionNotifMessage_ActionType) Type() protoreflect.EnumType {
  343. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5]
  344. }
  345. func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Number() protoreflect.EnumNumber {
  346. return protoreflect.EnumNumber(x)
  347. }
  348. // Deprecated: Do not use.
  349. func (x *Armadillo_Content_RavenActionNotifMessage_ActionType) UnmarshalJSON(b []byte) error {
  350. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  351. if err != nil {
  352. return err
  353. }
  354. *x = Armadillo_Content_RavenActionNotifMessage_ActionType(num)
  355. return nil
  356. }
  357. // Deprecated: Use Armadillo_Content_RavenActionNotifMessage_ActionType.Descriptor instead.
  358. func (Armadillo_Content_RavenActionNotifMessage_ActionType) EnumDescriptor() ([]byte, []int) {
  359. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7, 0}
  360. }
  361. type Armadillo_Content_RavenMessage_EphemeralType int32
  362. const (
  363. Armadillo_Content_RavenMessage_VIEW_ONCE Armadillo_Content_RavenMessage_EphemeralType = 0
  364. Armadillo_Content_RavenMessage_ALLOW_REPLAY Armadillo_Content_RavenMessage_EphemeralType = 1
  365. Armadillo_Content_RavenMessage_KEEP_IN_CHAT Armadillo_Content_RavenMessage_EphemeralType = 2
  366. )
  367. // Enum value maps for Armadillo_Content_RavenMessage_EphemeralType.
  368. var (
  369. Armadillo_Content_RavenMessage_EphemeralType_name = map[int32]string{
  370. 0: "VIEW_ONCE",
  371. 1: "ALLOW_REPLAY",
  372. 2: "KEEP_IN_CHAT",
  373. }
  374. Armadillo_Content_RavenMessage_EphemeralType_value = map[string]int32{
  375. "VIEW_ONCE": 0,
  376. "ALLOW_REPLAY": 1,
  377. "KEEP_IN_CHAT": 2,
  378. }
  379. )
  380. func (x Armadillo_Content_RavenMessage_EphemeralType) Enum() *Armadillo_Content_RavenMessage_EphemeralType {
  381. p := new(Armadillo_Content_RavenMessage_EphemeralType)
  382. *p = x
  383. return p
  384. }
  385. func (x Armadillo_Content_RavenMessage_EphemeralType) String() string {
  386. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  387. }
  388. func (Armadillo_Content_RavenMessage_EphemeralType) Descriptor() protoreflect.EnumDescriptor {
  389. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[6].Descriptor()
  390. }
  391. func (Armadillo_Content_RavenMessage_EphemeralType) Type() protoreflect.EnumType {
  392. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[6]
  393. }
  394. func (x Armadillo_Content_RavenMessage_EphemeralType) Number() protoreflect.EnumNumber {
  395. return protoreflect.EnumNumber(x)
  396. }
  397. // Deprecated: Do not use.
  398. func (x *Armadillo_Content_RavenMessage_EphemeralType) UnmarshalJSON(b []byte) error {
  399. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  400. if err != nil {
  401. return err
  402. }
  403. *x = Armadillo_Content_RavenMessage_EphemeralType(num)
  404. return nil
  405. }
  406. // Deprecated: Use Armadillo_Content_RavenMessage_EphemeralType.Descriptor instead.
  407. func (Armadillo_Content_RavenMessage_EphemeralType) EnumDescriptor() ([]byte, []int) {
  408. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8, 0}
  409. }
  410. type Armadillo_Content_CommonSticker_StickerType int32
  411. const (
  412. Armadillo_Content_CommonSticker_SMALL_LIKE Armadillo_Content_CommonSticker_StickerType = 1
  413. Armadillo_Content_CommonSticker_MEDIUM_LIKE Armadillo_Content_CommonSticker_StickerType = 2
  414. Armadillo_Content_CommonSticker_LARGE_LIKE Armadillo_Content_CommonSticker_StickerType = 3
  415. )
  416. // Enum value maps for Armadillo_Content_CommonSticker_StickerType.
  417. var (
  418. Armadillo_Content_CommonSticker_StickerType_name = map[int32]string{
  419. 1: "SMALL_LIKE",
  420. 2: "MEDIUM_LIKE",
  421. 3: "LARGE_LIKE",
  422. }
  423. Armadillo_Content_CommonSticker_StickerType_value = map[string]int32{
  424. "SMALL_LIKE": 1,
  425. "MEDIUM_LIKE": 2,
  426. "LARGE_LIKE": 3,
  427. }
  428. )
  429. func (x Armadillo_Content_CommonSticker_StickerType) Enum() *Armadillo_Content_CommonSticker_StickerType {
  430. p := new(Armadillo_Content_CommonSticker_StickerType)
  431. *p = x
  432. return p
  433. }
  434. func (x Armadillo_Content_CommonSticker_StickerType) String() string {
  435. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  436. }
  437. func (Armadillo_Content_CommonSticker_StickerType) Descriptor() protoreflect.EnumDescriptor {
  438. return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[7].Descriptor()
  439. }
  440. func (Armadillo_Content_CommonSticker_StickerType) Type() protoreflect.EnumType {
  441. return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[7]
  442. }
  443. func (x Armadillo_Content_CommonSticker_StickerType) Number() protoreflect.EnumNumber {
  444. return protoreflect.EnumNumber(x)
  445. }
  446. // Deprecated: Do not use.
  447. func (x *Armadillo_Content_CommonSticker_StickerType) UnmarshalJSON(b []byte) error {
  448. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  449. if err != nil {
  450. return err
  451. }
  452. *x = Armadillo_Content_CommonSticker_StickerType(num)
  453. return nil
  454. }
  455. // Deprecated: Use Armadillo_Content_CommonSticker_StickerType.Descriptor instead.
  456. func (Armadillo_Content_CommonSticker_StickerType) EnumDescriptor() ([]byte, []int) {
  457. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9, 0}
  458. }
  459. type Armadillo struct {
  460. state protoimpl.MessageState `protogen:"open.v1"`
  461. Payload *Armadillo_Payload `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"`
  462. Metadata *Armadillo_Metadata `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
  463. unknownFields protoimpl.UnknownFields
  464. sizeCache protoimpl.SizeCache
  465. }
  466. func (x *Armadillo) Reset() {
  467. *x = Armadillo{}
  468. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
  469. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  470. ms.StoreMessageInfo(mi)
  471. }
  472. func (x *Armadillo) String() string {
  473. return protoimpl.X.MessageStringOf(x)
  474. }
  475. func (*Armadillo) ProtoMessage() {}
  476. func (x *Armadillo) ProtoReflect() protoreflect.Message {
  477. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
  478. if x != nil {
  479. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  480. if ms.LoadMessageInfo() == nil {
  481. ms.StoreMessageInfo(mi)
  482. }
  483. return ms
  484. }
  485. return mi.MessageOf(x)
  486. }
  487. // Deprecated: Use Armadillo.ProtoReflect.Descriptor instead.
  488. func (*Armadillo) Descriptor() ([]byte, []int) {
  489. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0}
  490. }
  491. func (x *Armadillo) GetPayload() *Armadillo_Payload {
  492. if x != nil {
  493. return x.Payload
  494. }
  495. return nil
  496. }
  497. func (x *Armadillo) GetMetadata() *Armadillo_Metadata {
  498. if x != nil {
  499. return x.Metadata
  500. }
  501. return nil
  502. }
  503. type Armadillo_Metadata struct {
  504. state protoimpl.MessageState `protogen:"open.v1"`
  505. unknownFields protoimpl.UnknownFields
  506. sizeCache protoimpl.SizeCache
  507. }
  508. func (x *Armadillo_Metadata) Reset() {
  509. *x = Armadillo_Metadata{}
  510. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
  511. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  512. ms.StoreMessageInfo(mi)
  513. }
  514. func (x *Armadillo_Metadata) String() string {
  515. return protoimpl.X.MessageStringOf(x)
  516. }
  517. func (*Armadillo_Metadata) ProtoMessage() {}
  518. func (x *Armadillo_Metadata) ProtoReflect() protoreflect.Message {
  519. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
  520. if x != nil {
  521. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  522. if ms.LoadMessageInfo() == nil {
  523. ms.StoreMessageInfo(mi)
  524. }
  525. return ms
  526. }
  527. return mi.MessageOf(x)
  528. }
  529. // Deprecated: Use Armadillo_Metadata.ProtoReflect.Descriptor instead.
  530. func (*Armadillo_Metadata) Descriptor() ([]byte, []int) {
  531. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 0}
  532. }
  533. type Armadillo_Payload struct {
  534. state protoimpl.MessageState `protogen:"open.v1"`
  535. // Types that are valid to be assigned to Payload:
  536. //
  537. // *Armadillo_Payload_Content
  538. // *Armadillo_Payload_ApplicationData
  539. // *Armadillo_Payload_Signal
  540. // *Armadillo_Payload_SubProtocol
  541. Payload isArmadillo_Payload_Payload `protobuf_oneof:"payload"`
  542. unknownFields protoimpl.UnknownFields
  543. sizeCache protoimpl.SizeCache
  544. }
  545. func (x *Armadillo_Payload) Reset() {
  546. *x = Armadillo_Payload{}
  547. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
  548. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  549. ms.StoreMessageInfo(mi)
  550. }
  551. func (x *Armadillo_Payload) String() string {
  552. return protoimpl.X.MessageStringOf(x)
  553. }
  554. func (*Armadillo_Payload) ProtoMessage() {}
  555. func (x *Armadillo_Payload) ProtoReflect() protoreflect.Message {
  556. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
  557. if x != nil {
  558. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  559. if ms.LoadMessageInfo() == nil {
  560. ms.StoreMessageInfo(mi)
  561. }
  562. return ms
  563. }
  564. return mi.MessageOf(x)
  565. }
  566. // Deprecated: Use Armadillo_Payload.ProtoReflect.Descriptor instead.
  567. func (*Armadillo_Payload) Descriptor() ([]byte, []int) {
  568. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 1}
  569. }
  570. func (x *Armadillo_Payload) GetPayload() isArmadillo_Payload_Payload {
  571. if x != nil {
  572. return x.Payload
  573. }
  574. return nil
  575. }
  576. func (x *Armadillo_Payload) GetContent() *Armadillo_Content {
  577. if x != nil {
  578. if x, ok := x.Payload.(*Armadillo_Payload_Content); ok {
  579. return x.Content
  580. }
  581. }
  582. return nil
  583. }
  584. func (x *Armadillo_Payload) GetApplicationData() *Armadillo_ApplicationData {
  585. if x != nil {
  586. if x, ok := x.Payload.(*Armadillo_Payload_ApplicationData); ok {
  587. return x.ApplicationData
  588. }
  589. }
  590. return nil
  591. }
  592. func (x *Armadillo_Payload) GetSignal() *Armadillo_Signal {
  593. if x != nil {
  594. if x, ok := x.Payload.(*Armadillo_Payload_Signal); ok {
  595. return x.Signal
  596. }
  597. }
  598. return nil
  599. }
  600. func (x *Armadillo_Payload) GetSubProtocol() *Armadillo_SubProtocolPayload {
  601. if x != nil {
  602. if x, ok := x.Payload.(*Armadillo_Payload_SubProtocol); ok {
  603. return x.SubProtocol
  604. }
  605. }
  606. return nil
  607. }
  608. type isArmadillo_Payload_Payload interface {
  609. isArmadillo_Payload_Payload()
  610. }
  611. type Armadillo_Payload_Content struct {
  612. Content *Armadillo_Content `protobuf:"bytes,1,opt,name=content,oneof"`
  613. }
  614. type Armadillo_Payload_ApplicationData struct {
  615. ApplicationData *Armadillo_ApplicationData `protobuf:"bytes,2,opt,name=applicationData,oneof"`
  616. }
  617. type Armadillo_Payload_Signal struct {
  618. Signal *Armadillo_Signal `protobuf:"bytes,3,opt,name=signal,oneof"`
  619. }
  620. type Armadillo_Payload_SubProtocol struct {
  621. SubProtocol *Armadillo_SubProtocolPayload `protobuf:"bytes,4,opt,name=subProtocol,oneof"`
  622. }
  623. func (*Armadillo_Payload_Content) isArmadillo_Payload_Payload() {}
  624. func (*Armadillo_Payload_ApplicationData) isArmadillo_Payload_Payload() {}
  625. func (*Armadillo_Payload_Signal) isArmadillo_Payload_Payload() {}
  626. func (*Armadillo_Payload_SubProtocol) isArmadillo_Payload_Payload() {}
  627. type Armadillo_SubProtocolPayload struct {
  628. state protoimpl.MessageState `protogen:"open.v1"`
  629. FutureProof *waCommon.FutureProofBehavior `protobuf:"varint,1,opt,name=futureProof,enum=WACommon.FutureProofBehavior" json:"futureProof,omitempty"`
  630. unknownFields protoimpl.UnknownFields
  631. sizeCache protoimpl.SizeCache
  632. }
  633. func (x *Armadillo_SubProtocolPayload) Reset() {
  634. *x = Armadillo_SubProtocolPayload{}
  635. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
  636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  637. ms.StoreMessageInfo(mi)
  638. }
  639. func (x *Armadillo_SubProtocolPayload) String() string {
  640. return protoimpl.X.MessageStringOf(x)
  641. }
  642. func (*Armadillo_SubProtocolPayload) ProtoMessage() {}
  643. func (x *Armadillo_SubProtocolPayload) ProtoReflect() protoreflect.Message {
  644. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
  645. if x != nil {
  646. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  647. if ms.LoadMessageInfo() == nil {
  648. ms.StoreMessageInfo(mi)
  649. }
  650. return ms
  651. }
  652. return mi.MessageOf(x)
  653. }
  654. // Deprecated: Use Armadillo_SubProtocolPayload.ProtoReflect.Descriptor instead.
  655. func (*Armadillo_SubProtocolPayload) Descriptor() ([]byte, []int) {
  656. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 2}
  657. }
  658. func (x *Armadillo_SubProtocolPayload) GetFutureProof() waCommon.FutureProofBehavior {
  659. if x != nil && x.FutureProof != nil {
  660. return *x.FutureProof
  661. }
  662. return waCommon.FutureProofBehavior(0)
  663. }
  664. type Armadillo_Signal struct {
  665. state protoimpl.MessageState `protogen:"open.v1"`
  666. // Types that are valid to be assigned to Signal:
  667. //
  668. // *Armadillo_Signal_EncryptedBackupsSecrets_
  669. Signal isArmadillo_Signal_Signal `protobuf_oneof:"signal"`
  670. unknownFields protoimpl.UnknownFields
  671. sizeCache protoimpl.SizeCache
  672. }
  673. func (x *Armadillo_Signal) Reset() {
  674. *x = Armadillo_Signal{}
  675. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
  676. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  677. ms.StoreMessageInfo(mi)
  678. }
  679. func (x *Armadillo_Signal) String() string {
  680. return protoimpl.X.MessageStringOf(x)
  681. }
  682. func (*Armadillo_Signal) ProtoMessage() {}
  683. func (x *Armadillo_Signal) ProtoReflect() protoreflect.Message {
  684. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
  685. if x != nil {
  686. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  687. if ms.LoadMessageInfo() == nil {
  688. ms.StoreMessageInfo(mi)
  689. }
  690. return ms
  691. }
  692. return mi.MessageOf(x)
  693. }
  694. // Deprecated: Use Armadillo_Signal.ProtoReflect.Descriptor instead.
  695. func (*Armadillo_Signal) Descriptor() ([]byte, []int) {
  696. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3}
  697. }
  698. func (x *Armadillo_Signal) GetSignal() isArmadillo_Signal_Signal {
  699. if x != nil {
  700. return x.Signal
  701. }
  702. return nil
  703. }
  704. func (x *Armadillo_Signal) GetEncryptedBackupsSecrets() *Armadillo_Signal_EncryptedBackupsSecrets {
  705. if x != nil {
  706. if x, ok := x.Signal.(*Armadillo_Signal_EncryptedBackupsSecrets_); ok {
  707. return x.EncryptedBackupsSecrets
  708. }
  709. }
  710. return nil
  711. }
  712. type isArmadillo_Signal_Signal interface {
  713. isArmadillo_Signal_Signal()
  714. }
  715. type Armadillo_Signal_EncryptedBackupsSecrets_ struct {
  716. EncryptedBackupsSecrets *Armadillo_Signal_EncryptedBackupsSecrets `protobuf:"bytes,1,opt,name=encryptedBackupsSecrets,oneof"`
  717. }
  718. func (*Armadillo_Signal_EncryptedBackupsSecrets_) isArmadillo_Signal_Signal() {}
  719. type Armadillo_ApplicationData struct {
  720. state protoimpl.MessageState `protogen:"open.v1"`
  721. // Types that are valid to be assigned to ApplicationData:
  722. //
  723. // *Armadillo_ApplicationData_MetadataSync
  724. // *Armadillo_ApplicationData_AiBotResponse
  725. // *Armadillo_ApplicationData_MessageHistoryDocumentMessage_
  726. ApplicationData isArmadillo_ApplicationData_ApplicationData `protobuf_oneof:"applicationData"`
  727. unknownFields protoimpl.UnknownFields
  728. sizeCache protoimpl.SizeCache
  729. }
  730. func (x *Armadillo_ApplicationData) Reset() {
  731. *x = Armadillo_ApplicationData{}
  732. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5]
  733. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  734. ms.StoreMessageInfo(mi)
  735. }
  736. func (x *Armadillo_ApplicationData) String() string {
  737. return protoimpl.X.MessageStringOf(x)
  738. }
  739. func (*Armadillo_ApplicationData) ProtoMessage() {}
  740. func (x *Armadillo_ApplicationData) ProtoReflect() protoreflect.Message {
  741. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5]
  742. if x != nil {
  743. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  744. if ms.LoadMessageInfo() == nil {
  745. ms.StoreMessageInfo(mi)
  746. }
  747. return ms
  748. }
  749. return mi.MessageOf(x)
  750. }
  751. // Deprecated: Use Armadillo_ApplicationData.ProtoReflect.Descriptor instead.
  752. func (*Armadillo_ApplicationData) Descriptor() ([]byte, []int) {
  753. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4}
  754. }
  755. func (x *Armadillo_ApplicationData) GetApplicationData() isArmadillo_ApplicationData_ApplicationData {
  756. if x != nil {
  757. return x.ApplicationData
  758. }
  759. return nil
  760. }
  761. func (x *Armadillo_ApplicationData) GetMetadataSync() *Armadillo_ApplicationData_MetadataSyncNotification {
  762. if x != nil {
  763. if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MetadataSync); ok {
  764. return x.MetadataSync
  765. }
  766. }
  767. return nil
  768. }
  769. func (x *Armadillo_ApplicationData) GetAiBotResponse() *Armadillo_ApplicationData_AIBotResponseMessage {
  770. if x != nil {
  771. if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_AiBotResponse); ok {
  772. return x.AiBotResponse
  773. }
  774. }
  775. return nil
  776. }
  777. func (x *Armadillo_ApplicationData) GetMessageHistoryDocumentMessage() *Armadillo_ApplicationData_MessageHistoryDocumentMessage {
  778. if x != nil {
  779. if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MessageHistoryDocumentMessage_); ok {
  780. return x.MessageHistoryDocumentMessage
  781. }
  782. }
  783. return nil
  784. }
  785. type isArmadillo_ApplicationData_ApplicationData interface {
  786. isArmadillo_ApplicationData_ApplicationData()
  787. }
  788. type Armadillo_ApplicationData_MetadataSync struct {
  789. MetadataSync *Armadillo_ApplicationData_MetadataSyncNotification `protobuf:"bytes,1,opt,name=metadataSync,oneof"`
  790. }
  791. type Armadillo_ApplicationData_AiBotResponse struct {
  792. AiBotResponse *Armadillo_ApplicationData_AIBotResponseMessage `protobuf:"bytes,2,opt,name=aiBotResponse,oneof"`
  793. }
  794. type Armadillo_ApplicationData_MessageHistoryDocumentMessage_ struct {
  795. MessageHistoryDocumentMessage *Armadillo_ApplicationData_MessageHistoryDocumentMessage `protobuf:"bytes,3,opt,name=messageHistoryDocumentMessage,oneof"`
  796. }
  797. func (*Armadillo_ApplicationData_MetadataSync) isArmadillo_ApplicationData_ApplicationData() {}
  798. func (*Armadillo_ApplicationData_AiBotResponse) isArmadillo_ApplicationData_ApplicationData() {}
  799. func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_) isArmadillo_ApplicationData_ApplicationData() {
  800. }
  801. type Armadillo_Content struct {
  802. state protoimpl.MessageState `protogen:"open.v1"`
  803. // Types that are valid to be assigned to Content:
  804. //
  805. // *Armadillo_Content_CommonSticker_
  806. // *Armadillo_Content_ScreenshotAction_
  807. // *Armadillo_Content_ExtendedContentMessage
  808. // *Armadillo_Content_RavenMessage_
  809. // *Armadillo_Content_RavenActionNotifMessage_
  810. // *Armadillo_Content_ExtendedMessageContentWithSear
  811. // *Armadillo_Content_ImageGalleryMessage_
  812. // *Armadillo_Content_PaymentsTransactionMessage_
  813. // *Armadillo_Content_BumpExistingMessage_
  814. // *Armadillo_Content_NoteReplyMessage_
  815. // *Armadillo_Content_RavenMessageMsgr
  816. // *Armadillo_Content_NetworkVerificationMessage_
  817. Content isArmadillo_Content_Content `protobuf_oneof:"content"`
  818. unknownFields protoimpl.UnknownFields
  819. sizeCache protoimpl.SizeCache
  820. }
  821. func (x *Armadillo_Content) Reset() {
  822. *x = Armadillo_Content{}
  823. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
  824. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  825. ms.StoreMessageInfo(mi)
  826. }
  827. func (x *Armadillo_Content) String() string {
  828. return protoimpl.X.MessageStringOf(x)
  829. }
  830. func (*Armadillo_Content) ProtoMessage() {}
  831. func (x *Armadillo_Content) ProtoReflect() protoreflect.Message {
  832. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
  833. if x != nil {
  834. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  835. if ms.LoadMessageInfo() == nil {
  836. ms.StoreMessageInfo(mi)
  837. }
  838. return ms
  839. }
  840. return mi.MessageOf(x)
  841. }
  842. // Deprecated: Use Armadillo_Content.ProtoReflect.Descriptor instead.
  843. func (*Armadillo_Content) Descriptor() ([]byte, []int) {
  844. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5}
  845. }
  846. func (x *Armadillo_Content) GetContent() isArmadillo_Content_Content {
  847. if x != nil {
  848. return x.Content
  849. }
  850. return nil
  851. }
  852. func (x *Armadillo_Content) GetCommonSticker() *Armadillo_Content_CommonSticker {
  853. if x != nil {
  854. if x, ok := x.Content.(*Armadillo_Content_CommonSticker_); ok {
  855. return x.CommonSticker
  856. }
  857. }
  858. return nil
  859. }
  860. func (x *Armadillo_Content) GetScreenshotAction() *Armadillo_Content_ScreenshotAction {
  861. if x != nil {
  862. if x, ok := x.Content.(*Armadillo_Content_ScreenshotAction_); ok {
  863. return x.ScreenshotAction
  864. }
  865. }
  866. return nil
  867. }
  868. func (x *Armadillo_Content) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
  869. if x != nil {
  870. if x, ok := x.Content.(*Armadillo_Content_ExtendedContentMessage); ok {
  871. return x.ExtendedContentMessage
  872. }
  873. }
  874. return nil
  875. }
  876. func (x *Armadillo_Content) GetRavenMessage() *Armadillo_Content_RavenMessage {
  877. if x != nil {
  878. if x, ok := x.Content.(*Armadillo_Content_RavenMessage_); ok {
  879. return x.RavenMessage
  880. }
  881. }
  882. return nil
  883. }
  884. func (x *Armadillo_Content) GetRavenActionNotifMessage() *Armadillo_Content_RavenActionNotifMessage {
  885. if x != nil {
  886. if x, ok := x.Content.(*Armadillo_Content_RavenActionNotifMessage_); ok {
  887. return x.RavenActionNotifMessage
  888. }
  889. }
  890. return nil
  891. }
  892. func (x *Armadillo_Content) GetExtendedMessageContentWithSear() *Armadillo_Content_ExtendedContentMessageWithSear {
  893. if x != nil {
  894. if x, ok := x.Content.(*Armadillo_Content_ExtendedMessageContentWithSear); ok {
  895. return x.ExtendedMessageContentWithSear
  896. }
  897. }
  898. return nil
  899. }
  900. func (x *Armadillo_Content) GetImageGalleryMessage() *Armadillo_Content_ImageGalleryMessage {
  901. if x != nil {
  902. if x, ok := x.Content.(*Armadillo_Content_ImageGalleryMessage_); ok {
  903. return x.ImageGalleryMessage
  904. }
  905. }
  906. return nil
  907. }
  908. func (x *Armadillo_Content) GetPaymentsTransactionMessage() *Armadillo_Content_PaymentsTransactionMessage {
  909. if x != nil {
  910. if x, ok := x.Content.(*Armadillo_Content_PaymentsTransactionMessage_); ok {
  911. return x.PaymentsTransactionMessage
  912. }
  913. }
  914. return nil
  915. }
  916. func (x *Armadillo_Content) GetBumpExistingMessage() *Armadillo_Content_BumpExistingMessage {
  917. if x != nil {
  918. if x, ok := x.Content.(*Armadillo_Content_BumpExistingMessage_); ok {
  919. return x.BumpExistingMessage
  920. }
  921. }
  922. return nil
  923. }
  924. func (x *Armadillo_Content) GetNoteReplyMessage() *Armadillo_Content_NoteReplyMessage {
  925. if x != nil {
  926. if x, ok := x.Content.(*Armadillo_Content_NoteReplyMessage_); ok {
  927. return x.NoteReplyMessage
  928. }
  929. }
  930. return nil
  931. }
  932. func (x *Armadillo_Content) GetRavenMessageMsgr() *Armadillo_Content_RavenMessage {
  933. if x != nil {
  934. if x, ok := x.Content.(*Armadillo_Content_RavenMessageMsgr); ok {
  935. return x.RavenMessageMsgr
  936. }
  937. }
  938. return nil
  939. }
  940. func (x *Armadillo_Content) GetNetworkVerificationMessage() *Armadillo_Content_NetworkVerificationMessage {
  941. if x != nil {
  942. if x, ok := x.Content.(*Armadillo_Content_NetworkVerificationMessage_); ok {
  943. return x.NetworkVerificationMessage
  944. }
  945. }
  946. return nil
  947. }
  948. type isArmadillo_Content_Content interface {
  949. isArmadillo_Content_Content()
  950. }
  951. type Armadillo_Content_CommonSticker_ struct {
  952. CommonSticker *Armadillo_Content_CommonSticker `protobuf:"bytes,1,opt,name=commonSticker,oneof"`
  953. }
  954. type Armadillo_Content_ScreenshotAction_ struct {
  955. ScreenshotAction *Armadillo_Content_ScreenshotAction `protobuf:"bytes,3,opt,name=screenshotAction,oneof"`
  956. }
  957. type Armadillo_Content_ExtendedContentMessage struct {
  958. ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,4,opt,name=extendedContentMessage,oneof"`
  959. }
  960. type Armadillo_Content_RavenMessage_ struct {
  961. RavenMessage *Armadillo_Content_RavenMessage `protobuf:"bytes,5,opt,name=ravenMessage,oneof"`
  962. }
  963. type Armadillo_Content_RavenActionNotifMessage_ struct {
  964. RavenActionNotifMessage *Armadillo_Content_RavenActionNotifMessage `protobuf:"bytes,6,opt,name=ravenActionNotifMessage,oneof"`
  965. }
  966. type Armadillo_Content_ExtendedMessageContentWithSear struct {
  967. ExtendedMessageContentWithSear *Armadillo_Content_ExtendedContentMessageWithSear `protobuf:"bytes,7,opt,name=extendedMessageContentWithSear,oneof"`
  968. }
  969. type Armadillo_Content_ImageGalleryMessage_ struct {
  970. ImageGalleryMessage *Armadillo_Content_ImageGalleryMessage `protobuf:"bytes,8,opt,name=imageGalleryMessage,oneof"`
  971. }
  972. type Armadillo_Content_PaymentsTransactionMessage_ struct {
  973. PaymentsTransactionMessage *Armadillo_Content_PaymentsTransactionMessage `protobuf:"bytes,10,opt,name=paymentsTransactionMessage,oneof"`
  974. }
  975. type Armadillo_Content_BumpExistingMessage_ struct {
  976. BumpExistingMessage *Armadillo_Content_BumpExistingMessage `protobuf:"bytes,11,opt,name=bumpExistingMessage,oneof"`
  977. }
  978. type Armadillo_Content_NoteReplyMessage_ struct {
  979. NoteReplyMessage *Armadillo_Content_NoteReplyMessage `protobuf:"bytes,13,opt,name=noteReplyMessage,oneof"`
  980. }
  981. type Armadillo_Content_RavenMessageMsgr struct {
  982. RavenMessageMsgr *Armadillo_Content_RavenMessage `protobuf:"bytes,14,opt,name=ravenMessageMsgr,oneof"`
  983. }
  984. type Armadillo_Content_NetworkVerificationMessage_ struct {
  985. NetworkVerificationMessage *Armadillo_Content_NetworkVerificationMessage `protobuf:"bytes,15,opt,name=networkVerificationMessage,oneof"`
  986. }
  987. func (*Armadillo_Content_CommonSticker_) isArmadillo_Content_Content() {}
  988. func (*Armadillo_Content_ScreenshotAction_) isArmadillo_Content_Content() {}
  989. func (*Armadillo_Content_ExtendedContentMessage) isArmadillo_Content_Content() {}
  990. func (*Armadillo_Content_RavenMessage_) isArmadillo_Content_Content() {}
  991. func (*Armadillo_Content_RavenActionNotifMessage_) isArmadillo_Content_Content() {}
  992. func (*Armadillo_Content_ExtendedMessageContentWithSear) isArmadillo_Content_Content() {}
  993. func (*Armadillo_Content_ImageGalleryMessage_) isArmadillo_Content_Content() {}
  994. func (*Armadillo_Content_PaymentsTransactionMessage_) isArmadillo_Content_Content() {}
  995. func (*Armadillo_Content_BumpExistingMessage_) isArmadillo_Content_Content() {}
  996. func (*Armadillo_Content_NoteReplyMessage_) isArmadillo_Content_Content() {}
  997. func (*Armadillo_Content_RavenMessageMsgr) isArmadillo_Content_Content() {}
  998. func (*Armadillo_Content_NetworkVerificationMessage_) isArmadillo_Content_Content() {}
  999. type Armadillo_Signal_EncryptedBackupsSecrets struct {
  1000. state protoimpl.MessageState `protogen:"open.v1"`
  1001. BackupID *uint64 `protobuf:"varint,1,opt,name=backupID" json:"backupID,omitempty"`
  1002. ServerDataID *uint64 `protobuf:"varint,2,opt,name=serverDataID" json:"serverDataID,omitempty"`
  1003. Epoch []*Armadillo_Signal_EncryptedBackupsSecrets_Epoch `protobuf:"bytes,3,rep,name=epoch" json:"epoch,omitempty"`
  1004. TempOcmfClientState []byte `protobuf:"bytes,4,opt,name=tempOcmfClientState" json:"tempOcmfClientState,omitempty"`
  1005. MailboxRootKey []byte `protobuf:"bytes,5,opt,name=mailboxRootKey" json:"mailboxRootKey,omitempty"`
  1006. ObliviousValidationToken []byte `protobuf:"bytes,6,opt,name=obliviousValidationToken" json:"obliviousValidationToken,omitempty"`
  1007. unknownFields protoimpl.UnknownFields
  1008. sizeCache protoimpl.SizeCache
  1009. }
  1010. func (x *Armadillo_Signal_EncryptedBackupsSecrets) Reset() {
  1011. *x = Armadillo_Signal_EncryptedBackupsSecrets{}
  1012. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[7]
  1013. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1014. ms.StoreMessageInfo(mi)
  1015. }
  1016. func (x *Armadillo_Signal_EncryptedBackupsSecrets) String() string {
  1017. return protoimpl.X.MessageStringOf(x)
  1018. }
  1019. func (*Armadillo_Signal_EncryptedBackupsSecrets) ProtoMessage() {}
  1020. func (x *Armadillo_Signal_EncryptedBackupsSecrets) ProtoReflect() protoreflect.Message {
  1021. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[7]
  1022. if x != nil {
  1023. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1024. if ms.LoadMessageInfo() == nil {
  1025. ms.StoreMessageInfo(mi)
  1026. }
  1027. return ms
  1028. }
  1029. return mi.MessageOf(x)
  1030. }
  1031. // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets.ProtoReflect.Descriptor instead.
  1032. func (*Armadillo_Signal_EncryptedBackupsSecrets) Descriptor() ([]byte, []int) {
  1033. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0}
  1034. }
  1035. func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetBackupID() uint64 {
  1036. if x != nil && x.BackupID != nil {
  1037. return *x.BackupID
  1038. }
  1039. return 0
  1040. }
  1041. func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetServerDataID() uint64 {
  1042. if x != nil && x.ServerDataID != nil {
  1043. return *x.ServerDataID
  1044. }
  1045. return 0
  1046. }
  1047. func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetEpoch() []*Armadillo_Signal_EncryptedBackupsSecrets_Epoch {
  1048. if x != nil {
  1049. return x.Epoch
  1050. }
  1051. return nil
  1052. }
  1053. func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetTempOcmfClientState() []byte {
  1054. if x != nil {
  1055. return x.TempOcmfClientState
  1056. }
  1057. return nil
  1058. }
  1059. func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetMailboxRootKey() []byte {
  1060. if x != nil {
  1061. return x.MailboxRootKey
  1062. }
  1063. return nil
  1064. }
  1065. func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetObliviousValidationToken() []byte {
  1066. if x != nil {
  1067. return x.ObliviousValidationToken
  1068. }
  1069. return nil
  1070. }
  1071. type Armadillo_Signal_EncryptedBackupsSecrets_Epoch struct {
  1072. state protoimpl.MessageState `protogen:"open.v1"`
  1073. ID *uint64 `protobuf:"varint,1,opt,name=ID" json:"ID,omitempty"`
  1074. AnonID []byte `protobuf:"bytes,2,opt,name=anonID" json:"anonID,omitempty"`
  1075. RootKey []byte `protobuf:"bytes,3,opt,name=rootKey" json:"rootKey,omitempty"`
  1076. Status *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus `protobuf:"varint,4,opt,name=status,enum=WAArmadilloApplication.Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus" json:"status,omitempty"`
  1077. unknownFields protoimpl.UnknownFields
  1078. sizeCache protoimpl.SizeCache
  1079. }
  1080. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) Reset() {
  1081. *x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch{}
  1082. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[8]
  1083. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1084. ms.StoreMessageInfo(mi)
  1085. }
  1086. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) String() string {
  1087. return protoimpl.X.MessageStringOf(x)
  1088. }
  1089. func (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch) ProtoMessage() {}
  1090. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) ProtoReflect() protoreflect.Message {
  1091. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[8]
  1092. if x != nil {
  1093. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1094. if ms.LoadMessageInfo() == nil {
  1095. ms.StoreMessageInfo(mi)
  1096. }
  1097. return ms
  1098. }
  1099. return mi.MessageOf(x)
  1100. }
  1101. // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch.ProtoReflect.Descriptor instead.
  1102. func (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch) Descriptor() ([]byte, []int) {
  1103. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0}
  1104. }
  1105. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetID() uint64 {
  1106. if x != nil && x.ID != nil {
  1107. return *x.ID
  1108. }
  1109. return 0
  1110. }
  1111. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetAnonID() []byte {
  1112. if x != nil {
  1113. return x.AnonID
  1114. }
  1115. return nil
  1116. }
  1117. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetRootKey() []byte {
  1118. if x != nil {
  1119. return x.RootKey
  1120. }
  1121. return nil
  1122. }
  1123. func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetStatus() Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
  1124. if x != nil && x.Status != nil {
  1125. return *x.Status
  1126. }
  1127. return Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN
  1128. }
  1129. type Armadillo_ApplicationData_MessageHistoryDocumentMessage struct {
  1130. state protoimpl.MessageState `protogen:"open.v1"`
  1131. Document *waCommon.SubProtocol `protobuf:"bytes,1,opt,name=document" json:"document,omitempty"`
  1132. unknownFields protoimpl.UnknownFields
  1133. sizeCache protoimpl.SizeCache
  1134. }
  1135. func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) Reset() {
  1136. *x = Armadillo_ApplicationData_MessageHistoryDocumentMessage{}
  1137. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
  1138. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1139. ms.StoreMessageInfo(mi)
  1140. }
  1141. func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) String() string {
  1142. return protoimpl.X.MessageStringOf(x)
  1143. }
  1144. func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoMessage() {}
  1145. func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoReflect() protoreflect.Message {
  1146. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
  1147. if x != nil {
  1148. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1149. if ms.LoadMessageInfo() == nil {
  1150. ms.StoreMessageInfo(mi)
  1151. }
  1152. return ms
  1153. }
  1154. return mi.MessageOf(x)
  1155. }
  1156. // Deprecated: Use Armadillo_ApplicationData_MessageHistoryDocumentMessage.ProtoReflect.Descriptor instead.
  1157. func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) Descriptor() ([]byte, []int) {
  1158. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 0}
  1159. }
  1160. func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) GetDocument() *waCommon.SubProtocol {
  1161. if x != nil {
  1162. return x.Document
  1163. }
  1164. return nil
  1165. }
  1166. type Armadillo_ApplicationData_AIBotResponseMessage struct {
  1167. state protoimpl.MessageState `protogen:"open.v1"`
  1168. SummonToken *string `protobuf:"bytes,1,opt,name=summonToken" json:"summonToken,omitempty"`
  1169. MessageText *string `protobuf:"bytes,2,opt,name=messageText" json:"messageText,omitempty"`
  1170. SerializedExtras *string `protobuf:"bytes,3,opt,name=serializedExtras" json:"serializedExtras,omitempty"`
  1171. unknownFields protoimpl.UnknownFields
  1172. sizeCache protoimpl.SizeCache
  1173. }
  1174. func (x *Armadillo_ApplicationData_AIBotResponseMessage) Reset() {
  1175. *x = Armadillo_ApplicationData_AIBotResponseMessage{}
  1176. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
  1177. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1178. ms.StoreMessageInfo(mi)
  1179. }
  1180. func (x *Armadillo_ApplicationData_AIBotResponseMessage) String() string {
  1181. return protoimpl.X.MessageStringOf(x)
  1182. }
  1183. func (*Armadillo_ApplicationData_AIBotResponseMessage) ProtoMessage() {}
  1184. func (x *Armadillo_ApplicationData_AIBotResponseMessage) ProtoReflect() protoreflect.Message {
  1185. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
  1186. if x != nil {
  1187. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1188. if ms.LoadMessageInfo() == nil {
  1189. ms.StoreMessageInfo(mi)
  1190. }
  1191. return ms
  1192. }
  1193. return mi.MessageOf(x)
  1194. }
  1195. // Deprecated: Use Armadillo_ApplicationData_AIBotResponseMessage.ProtoReflect.Descriptor instead.
  1196. func (*Armadillo_ApplicationData_AIBotResponseMessage) Descriptor() ([]byte, []int) {
  1197. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1}
  1198. }
  1199. func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSummonToken() string {
  1200. if x != nil && x.SummonToken != nil {
  1201. return *x.SummonToken
  1202. }
  1203. return ""
  1204. }
  1205. func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetMessageText() string {
  1206. if x != nil && x.MessageText != nil {
  1207. return *x.MessageText
  1208. }
  1209. return ""
  1210. }
  1211. func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSerializedExtras() string {
  1212. if x != nil && x.SerializedExtras != nil {
  1213. return *x.SerializedExtras
  1214. }
  1215. return ""
  1216. }
  1217. type Armadillo_ApplicationData_MetadataSyncAction struct {
  1218. state protoimpl.MessageState `protogen:"open.v1"`
  1219. // Types that are valid to be assigned to ActionType:
  1220. //
  1221. // *Armadillo_ApplicationData_MetadataSyncAction_ChatAction
  1222. // *Armadillo_ApplicationData_MetadataSyncAction_MessageAction
  1223. // *Armadillo_ApplicationData_MetadataSyncAction_SpectraAction
  1224. // *Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction
  1225. ActionType isArmadillo_ApplicationData_MetadataSyncAction_ActionType `protobuf_oneof:"actionType"`
  1226. ActionTimestamp *int64 `protobuf:"varint,1,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
  1227. unknownFields protoimpl.UnknownFields
  1228. sizeCache protoimpl.SizeCache
  1229. }
  1230. func (x *Armadillo_ApplicationData_MetadataSyncAction) Reset() {
  1231. *x = Armadillo_ApplicationData_MetadataSyncAction{}
  1232. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
  1233. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1234. ms.StoreMessageInfo(mi)
  1235. }
  1236. func (x *Armadillo_ApplicationData_MetadataSyncAction) String() string {
  1237. return protoimpl.X.MessageStringOf(x)
  1238. }
  1239. func (*Armadillo_ApplicationData_MetadataSyncAction) ProtoMessage() {}
  1240. func (x *Armadillo_ApplicationData_MetadataSyncAction) ProtoReflect() protoreflect.Message {
  1241. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
  1242. if x != nil {
  1243. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1244. if ms.LoadMessageInfo() == nil {
  1245. ms.StoreMessageInfo(mi)
  1246. }
  1247. return ms
  1248. }
  1249. return mi.MessageOf(x)
  1250. }
  1251. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction.ProtoReflect.Descriptor instead.
  1252. func (*Armadillo_ApplicationData_MetadataSyncAction) Descriptor() ([]byte, []int) {
  1253. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2}
  1254. }
  1255. func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionType() isArmadillo_ApplicationData_MetadataSyncAction_ActionType {
  1256. if x != nil {
  1257. return x.ActionType
  1258. }
  1259. return nil
  1260. }
  1261. func (x *Armadillo_ApplicationData_MetadataSyncAction) GetChatAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction {
  1262. if x != nil {
  1263. if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_ChatAction); ok {
  1264. return x.ChatAction
  1265. }
  1266. }
  1267. return nil
  1268. }
  1269. func (x *Armadillo_ApplicationData_MetadataSyncAction) GetMessageAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction {
  1270. if x != nil {
  1271. if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_MessageAction); ok {
  1272. return x.MessageAction
  1273. }
  1274. }
  1275. return nil
  1276. }
  1277. func (x *Armadillo_ApplicationData_MetadataSyncAction) GetSpectraAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction {
  1278. if x != nil {
  1279. if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_SpectraAction); ok {
  1280. return x.SpectraAction
  1281. }
  1282. }
  1283. return nil
  1284. }
  1285. func (x *Armadillo_ApplicationData_MetadataSyncAction) GetAttachmentInterventionAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction {
  1286. if x != nil {
  1287. if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction); ok {
  1288. return x.AttachmentInterventionAction
  1289. }
  1290. }
  1291. return nil
  1292. }
  1293. func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionTimestamp() int64 {
  1294. if x != nil && x.ActionTimestamp != nil {
  1295. return *x.ActionTimestamp
  1296. }
  1297. return 0
  1298. }
  1299. type isArmadillo_ApplicationData_MetadataSyncAction_ActionType interface {
  1300. isArmadillo_ApplicationData_MetadataSyncAction_ActionType()
  1301. }
  1302. type Armadillo_ApplicationData_MetadataSyncAction_ChatAction struct {
  1303. ChatAction *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction `protobuf:"bytes,101,opt,name=chatAction,oneof"`
  1304. }
  1305. type Armadillo_ApplicationData_MetadataSyncAction_MessageAction struct {
  1306. MessageAction *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction `protobuf:"bytes,102,opt,name=messageAction,oneof"`
  1307. }
  1308. type Armadillo_ApplicationData_MetadataSyncAction_SpectraAction struct {
  1309. SpectraAction *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction `protobuf:"bytes,103,opt,name=spectraAction,oneof"`
  1310. }
  1311. type Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction struct {
  1312. AttachmentInterventionAction *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction `protobuf:"bytes,104,opt,name=attachmentInterventionAction,oneof"`
  1313. }
  1314. func (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
  1315. }
  1316. func (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
  1317. }
  1318. func (*Armadillo_ApplicationData_MetadataSyncAction_SpectraAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
  1319. }
  1320. func (*Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
  1321. }
  1322. type Armadillo_ApplicationData_MetadataSyncNotification struct {
  1323. state protoimpl.MessageState `protogen:"open.v1"`
  1324. Actions []*Armadillo_ApplicationData_MetadataSyncAction `protobuf:"bytes,2,rep,name=actions" json:"actions,omitempty"`
  1325. unknownFields protoimpl.UnknownFields
  1326. sizeCache protoimpl.SizeCache
  1327. }
  1328. func (x *Armadillo_ApplicationData_MetadataSyncNotification) Reset() {
  1329. *x = Armadillo_ApplicationData_MetadataSyncNotification{}
  1330. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
  1331. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1332. ms.StoreMessageInfo(mi)
  1333. }
  1334. func (x *Armadillo_ApplicationData_MetadataSyncNotification) String() string {
  1335. return protoimpl.X.MessageStringOf(x)
  1336. }
  1337. func (*Armadillo_ApplicationData_MetadataSyncNotification) ProtoMessage() {}
  1338. func (x *Armadillo_ApplicationData_MetadataSyncNotification) ProtoReflect() protoreflect.Message {
  1339. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
  1340. if x != nil {
  1341. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1342. if ms.LoadMessageInfo() == nil {
  1343. ms.StoreMessageInfo(mi)
  1344. }
  1345. return ms
  1346. }
  1347. return mi.MessageOf(x)
  1348. }
  1349. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncNotification.ProtoReflect.Descriptor instead.
  1350. func (*Armadillo_ApplicationData_MetadataSyncNotification) Descriptor() ([]byte, []int) {
  1351. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 3}
  1352. }
  1353. func (x *Armadillo_ApplicationData_MetadataSyncNotification) GetActions() []*Armadillo_ApplicationData_MetadataSyncAction {
  1354. if x != nil {
  1355. return x.Actions
  1356. }
  1357. return nil
  1358. }
  1359. type Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction struct {
  1360. state protoimpl.MessageState `protogen:"open.v1"`
  1361. MessageKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=messageKey" json:"messageKey,omitempty"`
  1362. InterventionType *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType `protobuf:"varint,2,opt,name=interventionType,enum=WAArmadilloApplication.Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType" json:"interventionType,omitempty"`
  1363. unknownFields protoimpl.UnknownFields
  1364. sizeCache protoimpl.SizeCache
  1365. }
  1366. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) Reset() {
  1367. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction{}
  1368. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
  1369. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1370. ms.StoreMessageInfo(mi)
  1371. }
  1372. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) String() string {
  1373. return protoimpl.X.MessageStringOf(x)
  1374. }
  1375. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) ProtoMessage() {
  1376. }
  1377. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) ProtoReflect() protoreflect.Message {
  1378. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
  1379. if x != nil {
  1380. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1381. if ms.LoadMessageInfo() == nil {
  1382. ms.StoreMessageInfo(mi)
  1383. }
  1384. return ms
  1385. }
  1386. return mi.MessageOf(x)
  1387. }
  1388. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction.ProtoReflect.Descriptor instead.
  1389. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) Descriptor() ([]byte, []int) {
  1390. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0}
  1391. }
  1392. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) GetMessageKey() *waCommon.MessageKey {
  1393. if x != nil {
  1394. return x.MessageKey
  1395. }
  1396. return nil
  1397. }
  1398. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) GetInterventionType() Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType {
  1399. if x != nil && x.InterventionType != nil {
  1400. return *x.InterventionType
  1401. }
  1402. return Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_UNKNOWN
  1403. }
  1404. type Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction struct {
  1405. state protoimpl.MessageState `protogen:"open.v1"`
  1406. Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
  1407. ActionType *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType `protobuf:"varint,2,opt,name=actionType,enum=WAArmadilloApplication.Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType" json:"actionType,omitempty"`
  1408. TakedownActionID *int64 `protobuf:"varint,3,opt,name=takedownActionID" json:"takedownActionID,omitempty"`
  1409. Config *string `protobuf:"bytes,4,opt,name=config" json:"config,omitempty"`
  1410. unknownFields protoimpl.UnknownFields
  1411. sizeCache protoimpl.SizeCache
  1412. }
  1413. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) Reset() {
  1414. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction{}
  1415. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
  1416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1417. ms.StoreMessageInfo(mi)
  1418. }
  1419. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) String() string {
  1420. return protoimpl.X.MessageStringOf(x)
  1421. }
  1422. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) ProtoMessage() {}
  1423. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) ProtoReflect() protoreflect.Message {
  1424. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
  1425. if x != nil {
  1426. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1427. if ms.LoadMessageInfo() == nil {
  1428. ms.StoreMessageInfo(mi)
  1429. }
  1430. return ms
  1431. }
  1432. return mi.MessageOf(x)
  1433. }
  1434. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction.ProtoReflect.Descriptor instead.
  1435. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) Descriptor() ([]byte, []int) {
  1436. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1}
  1437. }
  1438. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetKey() *waCommon.MessageKey {
  1439. if x != nil {
  1440. return x.Key
  1441. }
  1442. return nil
  1443. }
  1444. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetActionType() Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType {
  1445. if x != nil && x.ActionType != nil {
  1446. return *x.ActionType
  1447. }
  1448. return Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_TAKEDOWN
  1449. }
  1450. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetTakedownActionID() int64 {
  1451. if x != nil && x.TakedownActionID != nil {
  1452. return *x.TakedownActionID
  1453. }
  1454. return 0
  1455. }
  1456. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetConfig() string {
  1457. if x != nil && x.Config != nil {
  1458. return *x.Config
  1459. }
  1460. return ""
  1461. }
  1462. type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction struct {
  1463. state protoimpl.MessageState `protogen:"open.v1"`
  1464. // Types that are valid to be assigned to Action:
  1465. //
  1466. // *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete
  1467. Action isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action `protobuf_oneof:"action"`
  1468. Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
  1469. unknownFields protoimpl.UnknownFields
  1470. sizeCache protoimpl.SizeCache
  1471. }
  1472. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Reset() {
  1473. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction{}
  1474. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
  1475. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1476. ms.StoreMessageInfo(mi)
  1477. }
  1478. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) String() string {
  1479. return protoimpl.X.MessageStringOf(x)
  1480. }
  1481. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoMessage() {}
  1482. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoReflect() protoreflect.Message {
  1483. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
  1484. if x != nil {
  1485. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1486. if ms.LoadMessageInfo() == nil {
  1487. ms.StoreMessageInfo(mi)
  1488. }
  1489. return ms
  1490. }
  1491. return mi.MessageOf(x)
  1492. }
  1493. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction.ProtoReflect.Descriptor instead.
  1494. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Descriptor() ([]byte, []int) {
  1495. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 2}
  1496. }
  1497. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action {
  1498. if x != nil {
  1499. return x.Action
  1500. }
  1501. return nil
  1502. }
  1503. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetMessageDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete {
  1504. if x != nil {
  1505. if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete); ok {
  1506. return x.MessageDelete
  1507. }
  1508. }
  1509. return nil
  1510. }
  1511. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetKey() *waCommon.MessageKey {
  1512. if x != nil {
  1513. return x.Key
  1514. }
  1515. return nil
  1516. }
  1517. type isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action interface {
  1518. isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action()
  1519. }
  1520. type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete struct {
  1521. MessageDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete `protobuf:"bytes,101,opt,name=messageDelete,oneof"`
  1522. }
  1523. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action() {
  1524. }
  1525. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction struct {
  1526. state protoimpl.MessageState `protogen:"open.v1"`
  1527. // Types that are valid to be assigned to Action:
  1528. //
  1529. // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive
  1530. // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete
  1531. // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead
  1532. Action isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action `protobuf_oneof:"action"`
  1533. ChatID *string `protobuf:"bytes,1,opt,name=chatID" json:"chatID,omitempty"`
  1534. unknownFields protoimpl.UnknownFields
  1535. sizeCache protoimpl.SizeCache
  1536. }
  1537. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Reset() {
  1538. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction{}
  1539. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
  1540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1541. ms.StoreMessageInfo(mi)
  1542. }
  1543. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) String() string {
  1544. return protoimpl.X.MessageStringOf(x)
  1545. }
  1546. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoMessage() {}
  1547. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoReflect() protoreflect.Message {
  1548. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
  1549. if x != nil {
  1550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1551. if ms.LoadMessageInfo() == nil {
  1552. ms.StoreMessageInfo(mi)
  1553. }
  1554. return ms
  1555. }
  1556. return mi.MessageOf(x)
  1557. }
  1558. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction.ProtoReflect.Descriptor instead.
  1559. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Descriptor() ([]byte, []int) {
  1560. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3}
  1561. }
  1562. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action {
  1563. if x != nil {
  1564. return x.Action
  1565. }
  1566. return nil
  1567. }
  1568. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatArchive() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive {
  1569. if x != nil {
  1570. if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive); ok {
  1571. return x.ChatArchive
  1572. }
  1573. }
  1574. return nil
  1575. }
  1576. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete {
  1577. if x != nil {
  1578. if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete); ok {
  1579. return x.ChatDelete
  1580. }
  1581. }
  1582. return nil
  1583. }
  1584. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatRead() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead {
  1585. if x != nil {
  1586. if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead); ok {
  1587. return x.ChatRead
  1588. }
  1589. }
  1590. return nil
  1591. }
  1592. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatID() string {
  1593. if x != nil && x.ChatID != nil {
  1594. return *x.ChatID
  1595. }
  1596. return ""
  1597. }
  1598. type isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action interface {
  1599. isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action()
  1600. }
  1601. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive struct {
  1602. ChatArchive *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive `protobuf:"bytes,101,opt,name=chatArchive,oneof"`
  1603. }
  1604. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete struct {
  1605. ChatDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete `protobuf:"bytes,102,opt,name=chatDelete,oneof"`
  1606. }
  1607. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead struct {
  1608. ChatRead *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead `protobuf:"bytes,103,opt,name=chatRead,oneof"`
  1609. }
  1610. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
  1611. }
  1612. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
  1613. }
  1614. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
  1615. }
  1616. type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage struct {
  1617. state protoimpl.MessageState `protogen:"open.v1"`
  1618. Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
  1619. Timestamp *int64 `protobuf:"varint,2,opt,name=timestamp" json:"timestamp,omitempty"`
  1620. unknownFields protoimpl.UnknownFields
  1621. sizeCache protoimpl.SizeCache
  1622. }
  1623. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Reset() {
  1624. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage{}
  1625. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
  1626. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1627. ms.StoreMessageInfo(mi)
  1628. }
  1629. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) String() string {
  1630. return protoimpl.X.MessageStringOf(x)
  1631. }
  1632. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoMessage() {}
  1633. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoReflect() protoreflect.Message {
  1634. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
  1635. if x != nil {
  1636. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1637. if ms.LoadMessageInfo() == nil {
  1638. ms.StoreMessageInfo(mi)
  1639. }
  1640. return ms
  1641. }
  1642. return mi.MessageOf(x)
  1643. }
  1644. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage.ProtoReflect.Descriptor instead.
  1645. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Descriptor() ([]byte, []int) {
  1646. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 4}
  1647. }
  1648. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetKey() *waCommon.MessageKey {
  1649. if x != nil {
  1650. return x.Key
  1651. }
  1652. return nil
  1653. }
  1654. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetTimestamp() int64 {
  1655. if x != nil && x.Timestamp != nil {
  1656. return *x.Timestamp
  1657. }
  1658. return 0
  1659. }
  1660. type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange struct {
  1661. state protoimpl.MessageState `protogen:"open.v1"`
  1662. LastMessageTimestamp *int64 `protobuf:"varint,1,opt,name=lastMessageTimestamp" json:"lastMessageTimestamp,omitempty"`
  1663. LastSystemMessageTimestamp *int64 `protobuf:"varint,2,opt,name=lastSystemMessageTimestamp" json:"lastSystemMessageTimestamp,omitempty"`
  1664. Messages []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage `protobuf:"bytes,3,rep,name=messages" json:"messages,omitempty"`
  1665. unknownFields protoimpl.UnknownFields
  1666. sizeCache protoimpl.SizeCache
  1667. }
  1668. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Reset() {
  1669. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange{}
  1670. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
  1671. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1672. ms.StoreMessageInfo(mi)
  1673. }
  1674. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) String() string {
  1675. return protoimpl.X.MessageStringOf(x)
  1676. }
  1677. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoMessage() {}
  1678. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoReflect() protoreflect.Message {
  1679. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
  1680. if x != nil {
  1681. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1682. if ms.LoadMessageInfo() == nil {
  1683. ms.StoreMessageInfo(mi)
  1684. }
  1685. return ms
  1686. }
  1687. return mi.MessageOf(x)
  1688. }
  1689. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange.ProtoReflect.Descriptor instead.
  1690. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Descriptor() ([]byte, []int) {
  1691. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 5}
  1692. }
  1693. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastMessageTimestamp() int64 {
  1694. if x != nil && x.LastMessageTimestamp != nil {
  1695. return *x.LastMessageTimestamp
  1696. }
  1697. return 0
  1698. }
  1699. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastSystemMessageTimestamp() int64 {
  1700. if x != nil && x.LastSystemMessageTimestamp != nil {
  1701. return *x.LastSystemMessageTimestamp
  1702. }
  1703. return 0
  1704. }
  1705. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetMessages() []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage {
  1706. if x != nil {
  1707. return x.Messages
  1708. }
  1709. return nil
  1710. }
  1711. type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete struct {
  1712. state protoimpl.MessageState `protogen:"open.v1"`
  1713. unknownFields protoimpl.UnknownFields
  1714. sizeCache protoimpl.SizeCache
  1715. }
  1716. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Reset() {
  1717. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete{}
  1718. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
  1719. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1720. ms.StoreMessageInfo(mi)
  1721. }
  1722. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) String() string {
  1723. return protoimpl.X.MessageStringOf(x)
  1724. }
  1725. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoMessage() {
  1726. }
  1727. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoReflect() protoreflect.Message {
  1728. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
  1729. if x != nil {
  1730. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1731. if ms.LoadMessageInfo() == nil {
  1732. ms.StoreMessageInfo(mi)
  1733. }
  1734. return ms
  1735. }
  1736. return mi.MessageOf(x)
  1737. }
  1738. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete.ProtoReflect.Descriptor instead.
  1739. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Descriptor() ([]byte, []int) {
  1740. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 2, 0}
  1741. }
  1742. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead struct {
  1743. state protoimpl.MessageState `protogen:"open.v1"`
  1744. MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
  1745. Read *bool `protobuf:"varint,2,opt,name=read" json:"read,omitempty"`
  1746. unknownFields protoimpl.UnknownFields
  1747. sizeCache protoimpl.SizeCache
  1748. }
  1749. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Reset() {
  1750. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead{}
  1751. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
  1752. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1753. ms.StoreMessageInfo(mi)
  1754. }
  1755. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) String() string {
  1756. return protoimpl.X.MessageStringOf(x)
  1757. }
  1758. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoMessage() {}
  1759. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoReflect() protoreflect.Message {
  1760. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
  1761. if x != nil {
  1762. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1763. if ms.LoadMessageInfo() == nil {
  1764. ms.StoreMessageInfo(mi)
  1765. }
  1766. return ms
  1767. }
  1768. return mi.MessageOf(x)
  1769. }
  1770. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead.ProtoReflect.Descriptor instead.
  1771. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Descriptor() ([]byte, []int) {
  1772. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3, 0}
  1773. }
  1774. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
  1775. if x != nil {
  1776. return x.MessageRange
  1777. }
  1778. return nil
  1779. }
  1780. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetRead() bool {
  1781. if x != nil && x.Read != nil {
  1782. return *x.Read
  1783. }
  1784. return false
  1785. }
  1786. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete struct {
  1787. state protoimpl.MessageState `protogen:"open.v1"`
  1788. MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
  1789. unknownFields protoimpl.UnknownFields
  1790. sizeCache protoimpl.SizeCache
  1791. }
  1792. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Reset() {
  1793. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete{}
  1794. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
  1795. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1796. ms.StoreMessageInfo(mi)
  1797. }
  1798. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) String() string {
  1799. return protoimpl.X.MessageStringOf(x)
  1800. }
  1801. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoMessage() {}
  1802. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoReflect() protoreflect.Message {
  1803. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
  1804. if x != nil {
  1805. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1806. if ms.LoadMessageInfo() == nil {
  1807. ms.StoreMessageInfo(mi)
  1808. }
  1809. return ms
  1810. }
  1811. return mi.MessageOf(x)
  1812. }
  1813. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete.ProtoReflect.Descriptor instead.
  1814. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Descriptor() ([]byte, []int) {
  1815. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3, 1}
  1816. }
  1817. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
  1818. if x != nil {
  1819. return x.MessageRange
  1820. }
  1821. return nil
  1822. }
  1823. type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive struct {
  1824. state protoimpl.MessageState `protogen:"open.v1"`
  1825. MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
  1826. Archived *bool `protobuf:"varint,2,opt,name=archived" json:"archived,omitempty"`
  1827. unknownFields protoimpl.UnknownFields
  1828. sizeCache protoimpl.SizeCache
  1829. }
  1830. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Reset() {
  1831. *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive{}
  1832. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[22]
  1833. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1834. ms.StoreMessageInfo(mi)
  1835. }
  1836. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) String() string {
  1837. return protoimpl.X.MessageStringOf(x)
  1838. }
  1839. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoMessage() {
  1840. }
  1841. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoReflect() protoreflect.Message {
  1842. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[22]
  1843. if x != nil {
  1844. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1845. if ms.LoadMessageInfo() == nil {
  1846. ms.StoreMessageInfo(mi)
  1847. }
  1848. return ms
  1849. }
  1850. return mi.MessageOf(x)
  1851. }
  1852. // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive.ProtoReflect.Descriptor instead.
  1853. func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Descriptor() ([]byte, []int) {
  1854. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3, 2}
  1855. }
  1856. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
  1857. if x != nil {
  1858. return x.MessageRange
  1859. }
  1860. return nil
  1861. }
  1862. func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetArchived() bool {
  1863. if x != nil && x.Archived != nil {
  1864. return *x.Archived
  1865. }
  1866. return false
  1867. }
  1868. type Armadillo_Content_PaymentsTransactionMessage struct {
  1869. state protoimpl.MessageState `protogen:"open.v1"`
  1870. TransactionID *uint64 `protobuf:"varint,1,opt,name=transactionID" json:"transactionID,omitempty"`
  1871. Amount *string `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
  1872. Currency *string `protobuf:"bytes,3,opt,name=currency" json:"currency,omitempty"`
  1873. PaymentStatus *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus `protobuf:"varint,4,opt,name=paymentStatus,enum=WAArmadilloApplication.Armadillo_Content_PaymentsTransactionMessage_PaymentStatus" json:"paymentStatus,omitempty"`
  1874. ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,5,opt,name=extendedContentMessage" json:"extendedContentMessage,omitempty"`
  1875. unknownFields protoimpl.UnknownFields
  1876. sizeCache protoimpl.SizeCache
  1877. }
  1878. func (x *Armadillo_Content_PaymentsTransactionMessage) Reset() {
  1879. *x = Armadillo_Content_PaymentsTransactionMessage{}
  1880. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23]
  1881. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1882. ms.StoreMessageInfo(mi)
  1883. }
  1884. func (x *Armadillo_Content_PaymentsTransactionMessage) String() string {
  1885. return protoimpl.X.MessageStringOf(x)
  1886. }
  1887. func (*Armadillo_Content_PaymentsTransactionMessage) ProtoMessage() {}
  1888. func (x *Armadillo_Content_PaymentsTransactionMessage) ProtoReflect() protoreflect.Message {
  1889. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23]
  1890. if x != nil {
  1891. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1892. if ms.LoadMessageInfo() == nil {
  1893. ms.StoreMessageInfo(mi)
  1894. }
  1895. return ms
  1896. }
  1897. return mi.MessageOf(x)
  1898. }
  1899. // Deprecated: Use Armadillo_Content_PaymentsTransactionMessage.ProtoReflect.Descriptor instead.
  1900. func (*Armadillo_Content_PaymentsTransactionMessage) Descriptor() ([]byte, []int) {
  1901. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0}
  1902. }
  1903. func (x *Armadillo_Content_PaymentsTransactionMessage) GetTransactionID() uint64 {
  1904. if x != nil && x.TransactionID != nil {
  1905. return *x.TransactionID
  1906. }
  1907. return 0
  1908. }
  1909. func (x *Armadillo_Content_PaymentsTransactionMessage) GetAmount() string {
  1910. if x != nil && x.Amount != nil {
  1911. return *x.Amount
  1912. }
  1913. return ""
  1914. }
  1915. func (x *Armadillo_Content_PaymentsTransactionMessage) GetCurrency() string {
  1916. if x != nil && x.Currency != nil {
  1917. return *x.Currency
  1918. }
  1919. return ""
  1920. }
  1921. func (x *Armadillo_Content_PaymentsTransactionMessage) GetPaymentStatus() Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
  1922. if x != nil && x.PaymentStatus != nil {
  1923. return *x.PaymentStatus
  1924. }
  1925. return Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN
  1926. }
  1927. func (x *Armadillo_Content_PaymentsTransactionMessage) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
  1928. if x != nil {
  1929. return x.ExtendedContentMessage
  1930. }
  1931. return nil
  1932. }
  1933. type Armadillo_Content_NetworkVerificationMessage struct {
  1934. state protoimpl.MessageState `protogen:"open.v1"`
  1935. CodeText *string `protobuf:"bytes,1,opt,name=codeText" json:"codeText,omitempty"`
  1936. unknownFields protoimpl.UnknownFields
  1937. sizeCache protoimpl.SizeCache
  1938. }
  1939. func (x *Armadillo_Content_NetworkVerificationMessage) Reset() {
  1940. *x = Armadillo_Content_NetworkVerificationMessage{}
  1941. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[24]
  1942. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1943. ms.StoreMessageInfo(mi)
  1944. }
  1945. func (x *Armadillo_Content_NetworkVerificationMessage) String() string {
  1946. return protoimpl.X.MessageStringOf(x)
  1947. }
  1948. func (*Armadillo_Content_NetworkVerificationMessage) ProtoMessage() {}
  1949. func (x *Armadillo_Content_NetworkVerificationMessage) ProtoReflect() protoreflect.Message {
  1950. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[24]
  1951. if x != nil {
  1952. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1953. if ms.LoadMessageInfo() == nil {
  1954. ms.StoreMessageInfo(mi)
  1955. }
  1956. return ms
  1957. }
  1958. return mi.MessageOf(x)
  1959. }
  1960. // Deprecated: Use Armadillo_Content_NetworkVerificationMessage.ProtoReflect.Descriptor instead.
  1961. func (*Armadillo_Content_NetworkVerificationMessage) Descriptor() ([]byte, []int) {
  1962. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 1}
  1963. }
  1964. func (x *Armadillo_Content_NetworkVerificationMessage) GetCodeText() string {
  1965. if x != nil && x.CodeText != nil {
  1966. return *x.CodeText
  1967. }
  1968. return ""
  1969. }
  1970. type Armadillo_Content_NoteReplyMessage struct {
  1971. state protoimpl.MessageState `protogen:"open.v1"`
  1972. // Types that are valid to be assigned to NoteReplyContent:
  1973. //
  1974. // *Armadillo_Content_NoteReplyMessage_TextContent
  1975. // *Armadillo_Content_NoteReplyMessage_StickerContent
  1976. // *Armadillo_Content_NoteReplyMessage_VideoContent
  1977. NoteReplyContent isArmadillo_Content_NoteReplyMessage_NoteReplyContent `protobuf_oneof:"noteReplyContent"`
  1978. NoteID *string `protobuf:"bytes,1,opt,name=noteID" json:"noteID,omitempty"`
  1979. NoteText *waCommon.MessageText `protobuf:"bytes,2,opt,name=noteText" json:"noteText,omitempty"`
  1980. NoteTimestampMS *int64 `protobuf:"varint,3,opt,name=noteTimestampMS" json:"noteTimestampMS,omitempty"`
  1981. unknownFields protoimpl.UnknownFields
  1982. sizeCache protoimpl.SizeCache
  1983. }
  1984. func (x *Armadillo_Content_NoteReplyMessage) Reset() {
  1985. *x = Armadillo_Content_NoteReplyMessage{}
  1986. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25]
  1987. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1988. ms.StoreMessageInfo(mi)
  1989. }
  1990. func (x *Armadillo_Content_NoteReplyMessage) String() string {
  1991. return protoimpl.X.MessageStringOf(x)
  1992. }
  1993. func (*Armadillo_Content_NoteReplyMessage) ProtoMessage() {}
  1994. func (x *Armadillo_Content_NoteReplyMessage) ProtoReflect() protoreflect.Message {
  1995. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25]
  1996. if x != nil {
  1997. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1998. if ms.LoadMessageInfo() == nil {
  1999. ms.StoreMessageInfo(mi)
  2000. }
  2001. return ms
  2002. }
  2003. return mi.MessageOf(x)
  2004. }
  2005. // Deprecated: Use Armadillo_Content_NoteReplyMessage.ProtoReflect.Descriptor instead.
  2006. func (*Armadillo_Content_NoteReplyMessage) Descriptor() ([]byte, []int) {
  2007. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 2}
  2008. }
  2009. func (x *Armadillo_Content_NoteReplyMessage) GetNoteReplyContent() isArmadillo_Content_NoteReplyMessage_NoteReplyContent {
  2010. if x != nil {
  2011. return x.NoteReplyContent
  2012. }
  2013. return nil
  2014. }
  2015. func (x *Armadillo_Content_NoteReplyMessage) GetTextContent() *waCommon.MessageText {
  2016. if x != nil {
  2017. if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_TextContent); ok {
  2018. return x.TextContent
  2019. }
  2020. }
  2021. return nil
  2022. }
  2023. func (x *Armadillo_Content_NoteReplyMessage) GetStickerContent() *waCommon.SubProtocol {
  2024. if x != nil {
  2025. if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_StickerContent); ok {
  2026. return x.StickerContent
  2027. }
  2028. }
  2029. return nil
  2030. }
  2031. func (x *Armadillo_Content_NoteReplyMessage) GetVideoContent() *waCommon.SubProtocol {
  2032. if x != nil {
  2033. if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_VideoContent); ok {
  2034. return x.VideoContent
  2035. }
  2036. }
  2037. return nil
  2038. }
  2039. func (x *Armadillo_Content_NoteReplyMessage) GetNoteID() string {
  2040. if x != nil && x.NoteID != nil {
  2041. return *x.NoteID
  2042. }
  2043. return ""
  2044. }
  2045. func (x *Armadillo_Content_NoteReplyMessage) GetNoteText() *waCommon.MessageText {
  2046. if x != nil {
  2047. return x.NoteText
  2048. }
  2049. return nil
  2050. }
  2051. func (x *Armadillo_Content_NoteReplyMessage) GetNoteTimestampMS() int64 {
  2052. if x != nil && x.NoteTimestampMS != nil {
  2053. return *x.NoteTimestampMS
  2054. }
  2055. return 0
  2056. }
  2057. type isArmadillo_Content_NoteReplyMessage_NoteReplyContent interface {
  2058. isArmadillo_Content_NoteReplyMessage_NoteReplyContent()
  2059. }
  2060. type Armadillo_Content_NoteReplyMessage_TextContent struct {
  2061. TextContent *waCommon.MessageText `protobuf:"bytes,4,opt,name=textContent,oneof"`
  2062. }
  2063. type Armadillo_Content_NoteReplyMessage_StickerContent struct {
  2064. StickerContent *waCommon.SubProtocol `protobuf:"bytes,5,opt,name=stickerContent,oneof"`
  2065. }
  2066. type Armadillo_Content_NoteReplyMessage_VideoContent struct {
  2067. VideoContent *waCommon.SubProtocol `protobuf:"bytes,6,opt,name=videoContent,oneof"`
  2068. }
  2069. func (*Armadillo_Content_NoteReplyMessage_TextContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
  2070. }
  2071. func (*Armadillo_Content_NoteReplyMessage_StickerContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
  2072. }
  2073. func (*Armadillo_Content_NoteReplyMessage_VideoContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
  2074. }
  2075. type Armadillo_Content_BumpExistingMessage struct {
  2076. state protoimpl.MessageState `protogen:"open.v1"`
  2077. Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
  2078. unknownFields protoimpl.UnknownFields
  2079. sizeCache protoimpl.SizeCache
  2080. }
  2081. func (x *Armadillo_Content_BumpExistingMessage) Reset() {
  2082. *x = Armadillo_Content_BumpExistingMessage{}
  2083. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[26]
  2084. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2085. ms.StoreMessageInfo(mi)
  2086. }
  2087. func (x *Armadillo_Content_BumpExistingMessage) String() string {
  2088. return protoimpl.X.MessageStringOf(x)
  2089. }
  2090. func (*Armadillo_Content_BumpExistingMessage) ProtoMessage() {}
  2091. func (x *Armadillo_Content_BumpExistingMessage) ProtoReflect() protoreflect.Message {
  2092. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[26]
  2093. if x != nil {
  2094. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2095. if ms.LoadMessageInfo() == nil {
  2096. ms.StoreMessageInfo(mi)
  2097. }
  2098. return ms
  2099. }
  2100. return mi.MessageOf(x)
  2101. }
  2102. // Deprecated: Use Armadillo_Content_BumpExistingMessage.ProtoReflect.Descriptor instead.
  2103. func (*Armadillo_Content_BumpExistingMessage) Descriptor() ([]byte, []int) {
  2104. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 3}
  2105. }
  2106. func (x *Armadillo_Content_BumpExistingMessage) GetKey() *waCommon.MessageKey {
  2107. if x != nil {
  2108. return x.Key
  2109. }
  2110. return nil
  2111. }
  2112. type Armadillo_Content_ImageGalleryMessage struct {
  2113. state protoimpl.MessageState `protogen:"open.v1"`
  2114. Images []*waCommon.SubProtocol `protobuf:"bytes,1,rep,name=images" json:"images,omitempty"`
  2115. unknownFields protoimpl.UnknownFields
  2116. sizeCache protoimpl.SizeCache
  2117. }
  2118. func (x *Armadillo_Content_ImageGalleryMessage) Reset() {
  2119. *x = Armadillo_Content_ImageGalleryMessage{}
  2120. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[27]
  2121. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2122. ms.StoreMessageInfo(mi)
  2123. }
  2124. func (x *Armadillo_Content_ImageGalleryMessage) String() string {
  2125. return protoimpl.X.MessageStringOf(x)
  2126. }
  2127. func (*Armadillo_Content_ImageGalleryMessage) ProtoMessage() {}
  2128. func (x *Armadillo_Content_ImageGalleryMessage) ProtoReflect() protoreflect.Message {
  2129. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[27]
  2130. if x != nil {
  2131. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2132. if ms.LoadMessageInfo() == nil {
  2133. ms.StoreMessageInfo(mi)
  2134. }
  2135. return ms
  2136. }
  2137. return mi.MessageOf(x)
  2138. }
  2139. // Deprecated: Use Armadillo_Content_ImageGalleryMessage.ProtoReflect.Descriptor instead.
  2140. func (*Armadillo_Content_ImageGalleryMessage) Descriptor() ([]byte, []int) {
  2141. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 4}
  2142. }
  2143. func (x *Armadillo_Content_ImageGalleryMessage) GetImages() []*waCommon.SubProtocol {
  2144. if x != nil {
  2145. return x.Images
  2146. }
  2147. return nil
  2148. }
  2149. type Armadillo_Content_ScreenshotAction struct {
  2150. state protoimpl.MessageState `protogen:"open.v1"`
  2151. ScreenshotType *Armadillo_Content_ScreenshotAction_ScreenshotType `protobuf:"varint,1,opt,name=screenshotType,enum=WAArmadilloApplication.Armadillo_Content_ScreenshotAction_ScreenshotType" json:"screenshotType,omitempty"`
  2152. unknownFields protoimpl.UnknownFields
  2153. sizeCache protoimpl.SizeCache
  2154. }
  2155. func (x *Armadillo_Content_ScreenshotAction) Reset() {
  2156. *x = Armadillo_Content_ScreenshotAction{}
  2157. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[28]
  2158. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2159. ms.StoreMessageInfo(mi)
  2160. }
  2161. func (x *Armadillo_Content_ScreenshotAction) String() string {
  2162. return protoimpl.X.MessageStringOf(x)
  2163. }
  2164. func (*Armadillo_Content_ScreenshotAction) ProtoMessage() {}
  2165. func (x *Armadillo_Content_ScreenshotAction) ProtoReflect() protoreflect.Message {
  2166. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[28]
  2167. if x != nil {
  2168. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2169. if ms.LoadMessageInfo() == nil {
  2170. ms.StoreMessageInfo(mi)
  2171. }
  2172. return ms
  2173. }
  2174. return mi.MessageOf(x)
  2175. }
  2176. // Deprecated: Use Armadillo_Content_ScreenshotAction.ProtoReflect.Descriptor instead.
  2177. func (*Armadillo_Content_ScreenshotAction) Descriptor() ([]byte, []int) {
  2178. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5}
  2179. }
  2180. func (x *Armadillo_Content_ScreenshotAction) GetScreenshotType() Armadillo_Content_ScreenshotAction_ScreenshotType {
  2181. if x != nil && x.ScreenshotType != nil {
  2182. return *x.ScreenshotType
  2183. }
  2184. return Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE
  2185. }
  2186. type Armadillo_Content_ExtendedContentMessageWithSear struct {
  2187. state protoimpl.MessageState `protogen:"open.v1"`
  2188. SearID *string `protobuf:"bytes,1,opt,name=searID" json:"searID,omitempty"`
  2189. Payload []byte `protobuf:"bytes,2,opt,name=payload" json:"payload,omitempty"`
  2190. NativeURL *string `protobuf:"bytes,3,opt,name=nativeURL" json:"nativeURL,omitempty"`
  2191. SearAssociatedMessage *waCommon.SubProtocol `protobuf:"bytes,4,opt,name=searAssociatedMessage" json:"searAssociatedMessage,omitempty"`
  2192. SearSentWithMessageID *string `protobuf:"bytes,5,opt,name=searSentWithMessageID" json:"searSentWithMessageID,omitempty"`
  2193. unknownFields protoimpl.UnknownFields
  2194. sizeCache protoimpl.SizeCache
  2195. }
  2196. func (x *Armadillo_Content_ExtendedContentMessageWithSear) Reset() {
  2197. *x = Armadillo_Content_ExtendedContentMessageWithSear{}
  2198. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29]
  2199. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2200. ms.StoreMessageInfo(mi)
  2201. }
  2202. func (x *Armadillo_Content_ExtendedContentMessageWithSear) String() string {
  2203. return protoimpl.X.MessageStringOf(x)
  2204. }
  2205. func (*Armadillo_Content_ExtendedContentMessageWithSear) ProtoMessage() {}
  2206. func (x *Armadillo_Content_ExtendedContentMessageWithSear) ProtoReflect() protoreflect.Message {
  2207. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29]
  2208. if x != nil {
  2209. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2210. if ms.LoadMessageInfo() == nil {
  2211. ms.StoreMessageInfo(mi)
  2212. }
  2213. return ms
  2214. }
  2215. return mi.MessageOf(x)
  2216. }
  2217. // Deprecated: Use Armadillo_Content_ExtendedContentMessageWithSear.ProtoReflect.Descriptor instead.
  2218. func (*Armadillo_Content_ExtendedContentMessageWithSear) Descriptor() ([]byte, []int) {
  2219. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6}
  2220. }
  2221. func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearID() string {
  2222. if x != nil && x.SearID != nil {
  2223. return *x.SearID
  2224. }
  2225. return ""
  2226. }
  2227. func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetPayload() []byte {
  2228. if x != nil {
  2229. return x.Payload
  2230. }
  2231. return nil
  2232. }
  2233. func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetNativeURL() string {
  2234. if x != nil && x.NativeURL != nil {
  2235. return *x.NativeURL
  2236. }
  2237. return ""
  2238. }
  2239. func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearAssociatedMessage() *waCommon.SubProtocol {
  2240. if x != nil {
  2241. return x.SearAssociatedMessage
  2242. }
  2243. return nil
  2244. }
  2245. func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearSentWithMessageID() string {
  2246. if x != nil && x.SearSentWithMessageID != nil {
  2247. return *x.SearSentWithMessageID
  2248. }
  2249. return ""
  2250. }
  2251. type Armadillo_Content_RavenActionNotifMessage struct {
  2252. state protoimpl.MessageState `protogen:"open.v1"`
  2253. Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
  2254. ActionTimestamp *int64 `protobuf:"varint,2,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
  2255. ActionType *Armadillo_Content_RavenActionNotifMessage_ActionType `protobuf:"varint,3,opt,name=actionType,enum=WAArmadilloApplication.Armadillo_Content_RavenActionNotifMessage_ActionType" json:"actionType,omitempty"`
  2256. unknownFields protoimpl.UnknownFields
  2257. sizeCache protoimpl.SizeCache
  2258. }
  2259. func (x *Armadillo_Content_RavenActionNotifMessage) Reset() {
  2260. *x = Armadillo_Content_RavenActionNotifMessage{}
  2261. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[30]
  2262. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2263. ms.StoreMessageInfo(mi)
  2264. }
  2265. func (x *Armadillo_Content_RavenActionNotifMessage) String() string {
  2266. return protoimpl.X.MessageStringOf(x)
  2267. }
  2268. func (*Armadillo_Content_RavenActionNotifMessage) ProtoMessage() {}
  2269. func (x *Armadillo_Content_RavenActionNotifMessage) ProtoReflect() protoreflect.Message {
  2270. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[30]
  2271. if x != nil {
  2272. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2273. if ms.LoadMessageInfo() == nil {
  2274. ms.StoreMessageInfo(mi)
  2275. }
  2276. return ms
  2277. }
  2278. return mi.MessageOf(x)
  2279. }
  2280. // Deprecated: Use Armadillo_Content_RavenActionNotifMessage.ProtoReflect.Descriptor instead.
  2281. func (*Armadillo_Content_RavenActionNotifMessage) Descriptor() ([]byte, []int) {
  2282. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7}
  2283. }
  2284. func (x *Armadillo_Content_RavenActionNotifMessage) GetKey() *waCommon.MessageKey {
  2285. if x != nil {
  2286. return x.Key
  2287. }
  2288. return nil
  2289. }
  2290. func (x *Armadillo_Content_RavenActionNotifMessage) GetActionTimestamp() int64 {
  2291. if x != nil && x.ActionTimestamp != nil {
  2292. return *x.ActionTimestamp
  2293. }
  2294. return 0
  2295. }
  2296. func (x *Armadillo_Content_RavenActionNotifMessage) GetActionType() Armadillo_Content_RavenActionNotifMessage_ActionType {
  2297. if x != nil && x.ActionType != nil {
  2298. return *x.ActionType
  2299. }
  2300. return Armadillo_Content_RavenActionNotifMessage_PLAYED
  2301. }
  2302. type Armadillo_Content_RavenMessage struct {
  2303. state protoimpl.MessageState `protogen:"open.v1"`
  2304. // Types that are valid to be assigned to MediaContent:
  2305. //
  2306. // *Armadillo_Content_RavenMessage_ImageMessage
  2307. // *Armadillo_Content_RavenMessage_VideoMessage
  2308. MediaContent isArmadillo_Content_RavenMessage_MediaContent `protobuf_oneof:"mediaContent"`
  2309. EphemeralType *Armadillo_Content_RavenMessage_EphemeralType `protobuf:"varint,1,opt,name=ephemeralType,enum=WAArmadilloApplication.Armadillo_Content_RavenMessage_EphemeralType" json:"ephemeralType,omitempty"`
  2310. unknownFields protoimpl.UnknownFields
  2311. sizeCache protoimpl.SizeCache
  2312. }
  2313. func (x *Armadillo_Content_RavenMessage) Reset() {
  2314. *x = Armadillo_Content_RavenMessage{}
  2315. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[31]
  2316. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2317. ms.StoreMessageInfo(mi)
  2318. }
  2319. func (x *Armadillo_Content_RavenMessage) String() string {
  2320. return protoimpl.X.MessageStringOf(x)
  2321. }
  2322. func (*Armadillo_Content_RavenMessage) ProtoMessage() {}
  2323. func (x *Armadillo_Content_RavenMessage) ProtoReflect() protoreflect.Message {
  2324. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[31]
  2325. if x != nil {
  2326. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2327. if ms.LoadMessageInfo() == nil {
  2328. ms.StoreMessageInfo(mi)
  2329. }
  2330. return ms
  2331. }
  2332. return mi.MessageOf(x)
  2333. }
  2334. // Deprecated: Use Armadillo_Content_RavenMessage.ProtoReflect.Descriptor instead.
  2335. func (*Armadillo_Content_RavenMessage) Descriptor() ([]byte, []int) {
  2336. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8}
  2337. }
  2338. func (x *Armadillo_Content_RavenMessage) GetMediaContent() isArmadillo_Content_RavenMessage_MediaContent {
  2339. if x != nil {
  2340. return x.MediaContent
  2341. }
  2342. return nil
  2343. }
  2344. func (x *Armadillo_Content_RavenMessage) GetImageMessage() *waCommon.SubProtocol {
  2345. if x != nil {
  2346. if x, ok := x.MediaContent.(*Armadillo_Content_RavenMessage_ImageMessage); ok {
  2347. return x.ImageMessage
  2348. }
  2349. }
  2350. return nil
  2351. }
  2352. func (x *Armadillo_Content_RavenMessage) GetVideoMessage() *waCommon.SubProtocol {
  2353. if x != nil {
  2354. if x, ok := x.MediaContent.(*Armadillo_Content_RavenMessage_VideoMessage); ok {
  2355. return x.VideoMessage
  2356. }
  2357. }
  2358. return nil
  2359. }
  2360. func (x *Armadillo_Content_RavenMessage) GetEphemeralType() Armadillo_Content_RavenMessage_EphemeralType {
  2361. if x != nil && x.EphemeralType != nil {
  2362. return *x.EphemeralType
  2363. }
  2364. return Armadillo_Content_RavenMessage_VIEW_ONCE
  2365. }
  2366. type isArmadillo_Content_RavenMessage_MediaContent interface {
  2367. isArmadillo_Content_RavenMessage_MediaContent()
  2368. }
  2369. type Armadillo_Content_RavenMessage_ImageMessage struct {
  2370. ImageMessage *waCommon.SubProtocol `protobuf:"bytes,2,opt,name=imageMessage,oneof"`
  2371. }
  2372. type Armadillo_Content_RavenMessage_VideoMessage struct {
  2373. VideoMessage *waCommon.SubProtocol `protobuf:"bytes,3,opt,name=videoMessage,oneof"`
  2374. }
  2375. func (*Armadillo_Content_RavenMessage_ImageMessage) isArmadillo_Content_RavenMessage_MediaContent() {}
  2376. func (*Armadillo_Content_RavenMessage_VideoMessage) isArmadillo_Content_RavenMessage_MediaContent() {}
  2377. type Armadillo_Content_CommonSticker struct {
  2378. state protoimpl.MessageState `protogen:"open.v1"`
  2379. StickerType *Armadillo_Content_CommonSticker_StickerType `protobuf:"varint,1,opt,name=stickerType,enum=WAArmadilloApplication.Armadillo_Content_CommonSticker_StickerType" json:"stickerType,omitempty"`
  2380. unknownFields protoimpl.UnknownFields
  2381. sizeCache protoimpl.SizeCache
  2382. }
  2383. func (x *Armadillo_Content_CommonSticker) Reset() {
  2384. *x = Armadillo_Content_CommonSticker{}
  2385. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[32]
  2386. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2387. ms.StoreMessageInfo(mi)
  2388. }
  2389. func (x *Armadillo_Content_CommonSticker) String() string {
  2390. return protoimpl.X.MessageStringOf(x)
  2391. }
  2392. func (*Armadillo_Content_CommonSticker) ProtoMessage() {}
  2393. func (x *Armadillo_Content_CommonSticker) ProtoReflect() protoreflect.Message {
  2394. mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[32]
  2395. if x != nil {
  2396. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  2397. if ms.LoadMessageInfo() == nil {
  2398. ms.StoreMessageInfo(mi)
  2399. }
  2400. return ms
  2401. }
  2402. return mi.MessageOf(x)
  2403. }
  2404. // Deprecated: Use Armadillo_Content_CommonSticker.ProtoReflect.Descriptor instead.
  2405. func (*Armadillo_Content_CommonSticker) Descriptor() ([]byte, []int) {
  2406. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9}
  2407. }
  2408. func (x *Armadillo_Content_CommonSticker) GetStickerType() Armadillo_Content_CommonSticker_StickerType {
  2409. if x != nil && x.StickerType != nil {
  2410. return *x.StickerType
  2411. }
  2412. return Armadillo_Content_CommonSticker_SMALL_LIKE
  2413. }
  2414. var File_waArmadilloApplication_WAArmadilloApplication_proto protoreflect.FileDescriptor
  2415. const file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = "" +
  2416. "\n" +
  2417. "3waArmadilloApplication/WAArmadilloApplication.proto\x12\x16WAArmadilloApplication\x1a#waArmadilloXMA/WAArmadilloXMA.proto\x1a\x17waCommon/WACommon.proto\"\xbbF\n" +
  2418. "\tArmadillo\x12C\n" +
  2419. "\apayload\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.PayloadR\apayload\x12F\n" +
  2420. "\bmetadata\x18\x02 \x01(\v2*.WAArmadilloApplication.Armadillo.MetadataR\bmetadata\x1a\n" +
  2421. "\n" +
  2422. "\bMetadata\x1a\xd8\x02\n" +
  2423. "\aPayload\x12E\n" +
  2424. "\acontent\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.ContentH\x00R\acontent\x12]\n" +
  2425. "\x0fapplicationData\x18\x02 \x01(\v21.WAArmadilloApplication.Armadillo.ApplicationDataH\x00R\x0fapplicationData\x12B\n" +
  2426. "\x06signal\x18\x03 \x01(\v2(.WAArmadilloApplication.Armadillo.SignalH\x00R\x06signal\x12X\n" +
  2427. "\vsubProtocol\x18\x04 \x01(\v24.WAArmadilloApplication.Armadillo.SubProtocolPayloadH\x00R\vsubProtocolB\t\n" +
  2428. "\apayload\x1aU\n" +
  2429. "\x12SubProtocolPayload\x12?\n" +
  2430. "\vfutureProof\x18\x01 \x01(\x0e2\x1d.WACommon.FutureProofBehaviorR\vfutureProof\x1a\xc2\x05\n" +
  2431. "\x06Signal\x12|\n" +
  2432. "\x17encryptedBackupsSecrets\x18\x01 \x01(\v2@.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecretsH\x00R\x17encryptedBackupsSecrets\x1a\xaf\x04\n" +
  2433. "\x17EncryptedBackupsSecrets\x12\x1a\n" +
  2434. "\bbackupID\x18\x01 \x01(\x04R\bbackupID\x12\"\n" +
  2435. "\fserverDataID\x18\x02 \x01(\x04R\fserverDataID\x12\\\n" +
  2436. "\x05epoch\x18\x03 \x03(\v2F.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.EpochR\x05epoch\x120\n" +
  2437. "\x13tempOcmfClientState\x18\x04 \x01(\fR\x13tempOcmfClientState\x12&\n" +
  2438. "\x0emailboxRootKey\x18\x05 \x01(\fR\x0emailboxRootKey\x12:\n" +
  2439. "\x18obliviousValidationToken\x18\x06 \x01(\fR\x18obliviousValidationToken\x1a\xdf\x01\n" +
  2440. "\x05Epoch\x12\x0e\n" +
  2441. "\x02ID\x18\x01 \x01(\x04R\x02ID\x12\x16\n" +
  2442. "\x06anonID\x18\x02 \x01(\fR\x06anonID\x12\x18\n" +
  2443. "\arootKey\x18\x03 \x01(\fR\arootKey\x12j\n" +
  2444. "\x06status\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatusR\x06status\"(\n" +
  2445. "\vEpochStatus\x12\v\n" +
  2446. "\aES_OPEN\x10\x01\x12\f\n" +
  2447. "\bES_CLOSE\x10\x02B\b\n" +
  2448. "\x06signal\x1a\xf3\x1b\n" +
  2449. "\x0fApplicationData\x12p\n" +
  2450. "\fmetadataSync\x18\x01 \x01(\v2J.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotificationH\x00R\fmetadataSync\x12n\n" +
  2451. "\raiBotResponse\x18\x02 \x01(\v2F.WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessageH\x00R\raiBotResponse\x12\x97\x01\n" +
  2452. "\x1dmessageHistoryDocumentMessage\x18\x03 \x01(\v2O.WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessageH\x00R\x1dmessageHistoryDocumentMessage\x1aR\n" +
  2453. "\x1dMessageHistoryDocumentMessage\x121\n" +
  2454. "\bdocument\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\bdocument\x1a\x86\x01\n" +
  2455. "\x14AIBotResponseMessage\x12 \n" +
  2456. "\vsummonToken\x18\x01 \x01(\tR\vsummonToken\x12 \n" +
  2457. "\vmessageText\x18\x02 \x01(\tR\vmessageText\x12*\n" +
  2458. "\x10serializedExtras\x18\x03 \x01(\tR\x10serializedExtras\x1a\xf7\x15\n" +
  2459. "\x12MetadataSyncAction\x12u\n" +
  2460. "\n" +
  2461. "chatAction\x18e \x01(\v2S.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatActionH\x00R\n" +
  2462. "chatAction\x12~\n" +
  2463. "\rmessageAction\x18f \x01(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageActionH\x00R\rmessageAction\x12~\n" +
  2464. "\rspectraAction\x18g \x01(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraActionH\x00R\rspectraAction\x12\xab\x01\n" +
  2465. "\x1cattachmentInterventionAction\x18h \x01(\v2e.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionActionH\x00R\x1cattachmentInterventionAction\x12(\n" +
  2466. "\x0factionTimestamp\x18\x01 \x01(\x03R\x0factionTimestamp\x1a\xb6\x02\n" +
  2467. " SyncAttachmentInterventionAction\x124\n" +
  2468. "\n" +
  2469. "messageKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\n" +
  2470. "messageKey\x12\xa2\x01\n" +
  2471. "\x10interventionType\x18\x02 \x01(\x0e2v.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.InterventionTypeR\x10interventionType\"7\n" +
  2472. "\x10InterventionType\x12\v\n" +
  2473. "\aUNKNOWN\x10\x00\x12\b\n" +
  2474. "\x04NUDE\x10\x01\x12\f\n" +
  2475. "\bNOT_NUDE\x10\x02\x1a\xba\x02\n" +
  2476. "\x11SyncSpectraAction\x12&\n" +
  2477. "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x88\x01\n" +
  2478. "\n" +
  2479. "actionType\x18\x02 \x01(\x0e2h.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.SpectraActionTypeR\n" +
  2480. "actionType\x12*\n" +
  2481. "\x10takedownActionID\x18\x03 \x01(\x03R\x10takedownActionID\x12\x16\n" +
  2482. "\x06config\x18\x04 \x01(\tR\x06config\".\n" +
  2483. "\x11SpectraActionType\x12\f\n" +
  2484. "\bTAKEDOWN\x10\x00\x12\v\n" +
  2485. "\aRESTORE\x10\x01\x1a\xf1\x01\n" +
  2486. "\x11SyncMessageAction\x12\x92\x01\n" +
  2487. "\rmessageDelete\x18e \x01(\v2j.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDeleteH\x00R\rmessageDelete\x12&\n" +
  2488. "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1a\x15\n" +
  2489. "\x13ActionMessageDeleteB\b\n" +
  2490. "\x06action\x1a\xbb\a\n" +
  2491. "\x0eSyncChatAction\x12\x89\x01\n" +
  2492. "\vchatArchive\x18e \x01(\v2e.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchiveH\x00R\vchatArchive\x12\x86\x01\n" +
  2493. "\n" +
  2494. "chatDelete\x18f \x01(\v2d.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDeleteH\x00R\n" +
  2495. "chatDelete\x12\x80\x01\n" +
  2496. "\bchatRead\x18g \x01(\v2b.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatReadH\x00R\bchatRead\x12\x16\n" +
  2497. "\x06chatID\x18\x01 \x01(\tR\x06chatID\x1a\xa5\x01\n" +
  2498. "\x0eActionChatRead\x12\x7f\n" +
  2499. "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x12\n" +
  2500. "\x04read\x18\x02 \x01(\bR\x04read\x1a\x93\x01\n" +
  2501. "\x10ActionChatDelete\x12\x7f\n" +
  2502. "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x1a\xb0\x01\n" +
  2503. "\x11ActionChatArchive\x12\x7f\n" +
  2504. "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x1a\n" +
  2505. "\barchived\x18\x02 \x01(\bR\barchivedB\b\n" +
  2506. "\x06action\x1aY\n" +
  2507. "\x11SyncActionMessage\x12&\n" +
  2508. "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
  2509. "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\x1a\x80\x02\n" +
  2510. "\x16SyncActionMessageRange\x122\n" +
  2511. "\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
  2512. "\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12r\n" +
  2513. "\bmessages\x18\x03 \x03(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageR\bmessagesB\f\n" +
  2514. "\n" +
  2515. "actionType\x1az\n" +
  2516. "\x18MetadataSyncNotification\x12^\n" +
  2517. "\aactions\x18\x02 \x03(\v2D.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncActionR\aactionsB\x11\n" +
  2518. "\x0fapplicationData\x1a\xa7 \n" +
  2519. "\aContent\x12_\n" +
  2520. "\rcommonSticker\x18\x01 \x01(\v27.WAArmadilloApplication.Armadillo.Content.CommonStickerH\x00R\rcommonSticker\x12h\n" +
  2521. "\x10screenshotAction\x18\x03 \x01(\v2:.WAArmadilloApplication.Armadillo.Content.ScreenshotActionH\x00R\x10screenshotAction\x12`\n" +
  2522. "\x16extendedContentMessage\x18\x04 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageH\x00R\x16extendedContentMessage\x12\\\n" +
  2523. "\fravenMessage\x18\x05 \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\fravenMessage\x12}\n" +
  2524. "\x17ravenActionNotifMessage\x18\x06 \x01(\v2A.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessageH\x00R\x17ravenActionNotifMessage\x12\x92\x01\n" +
  2525. "\x1eextendedMessageContentWithSear\x18\a \x01(\v2H.WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSearH\x00R\x1eextendedMessageContentWithSear\x12q\n" +
  2526. "\x13imageGalleryMessage\x18\b \x01(\v2=.WAArmadilloApplication.Armadillo.Content.ImageGalleryMessageH\x00R\x13imageGalleryMessage\x12\x86\x01\n" +
  2527. "\x1apaymentsTransactionMessage\x18\n" +
  2528. " \x01(\v2D.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessageH\x00R\x1apaymentsTransactionMessage\x12q\n" +
  2529. "\x13bumpExistingMessage\x18\v \x01(\v2=.WAArmadilloApplication.Armadillo.Content.BumpExistingMessageH\x00R\x13bumpExistingMessage\x12h\n" +
  2530. "\x10noteReplyMessage\x18\r \x01(\v2:.WAArmadilloApplication.Armadillo.Content.NoteReplyMessageH\x00R\x10noteReplyMessage\x12d\n" +
  2531. "\x10ravenMessageMsgr\x18\x0e \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\x10ravenMessageMsgr\x12\x86\x01\n" +
  2532. "\x1anetworkVerificationMessage\x18\x0f \x01(\v2D.WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessageH\x00R\x1anetworkVerificationMessage\x1a\xba\a\n" +
  2533. "\x1aPaymentsTransactionMessage\x12$\n" +
  2534. "\rtransactionID\x18\x01 \x01(\x04R\rtransactionID\x12\x16\n" +
  2535. "\x06amount\x18\x02 \x01(\tR\x06amount\x12\x1a\n" +
  2536. "\bcurrency\x18\x03 \x01(\tR\bcurrency\x12x\n" +
  2537. "\rpaymentStatus\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatusR\rpaymentStatus\x12^\n" +
  2538. "\x16extendedContentMessage\x18\x05 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageR\x16extendedContentMessage\"\xe7\x04\n" +
  2539. "\rPaymentStatus\x12\x13\n" +
  2540. "\x0fPAYMENT_UNKNOWN\x10\x00\x12\x12\n" +
  2541. "\x0eREQUEST_INITED\x10\x04\x12\x14\n" +
  2542. "\x10REQUEST_DECLINED\x10\x05\x12\x1b\n" +
  2543. "\x17REQUEST_TRANSFER_INITED\x10\x06\x12\x1e\n" +
  2544. "\x1aREQUEST_TRANSFER_COMPLETED\x10\a\x12\x1b\n" +
  2545. "\x17REQUEST_TRANSFER_FAILED\x10\b\x12\x14\n" +
  2546. "\x10REQUEST_CANCELED\x10\t\x12\x13\n" +
  2547. "\x0fREQUEST_EXPIRED\x10\n" +
  2548. "\x12\x13\n" +
  2549. "\x0fTRANSFER_INITED\x10\v\x12\x14\n" +
  2550. "\x10TRANSFER_PENDING\x10\f\x12+\n" +
  2551. "'TRANSFER_PENDING_RECIPIENT_VERIFICATION\x10\r\x12\x15\n" +
  2552. "\x11TRANSFER_CANCELED\x10\x0e\x12\x16\n" +
  2553. "\x12TRANSFER_COMPLETED\x10\x0f\x12;\n" +
  2554. "7TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED\x10\x10\x128\n" +
  2555. "4TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER\x10\x11\x12\x15\n" +
  2556. "\x11TRANSFER_REFUNDED\x10\x12\x12\x1b\n" +
  2557. "\x17TRANSFER_PARTIAL_REFUND\x10\x13\x12\x19\n" +
  2558. "\x15TRANSFER_CHARGED_BACK\x10\x14\x12\x14\n" +
  2559. "\x10TRANSFER_EXPIRED\x10\x15\x12\x15\n" +
  2560. "\x11TRANSFER_DECLINED\x10\x16\x12\x18\n" +
  2561. "\x14TRANSFER_UNAVAILABLE\x10\x17\x1a8\n" +
  2562. "\x1aNetworkVerificationMessage\x12\x1a\n" +
  2563. "\bcodeText\x18\x01 \x01(\tR\bcodeText\x1a\xd4\x02\n" +
  2564. "\x10NoteReplyMessage\x129\n" +
  2565. "\vtextContent\x18\x04 \x01(\v2\x15.WACommon.MessageTextH\x00R\vtextContent\x12?\n" +
  2566. "\x0estickerContent\x18\x05 \x01(\v2\x15.WACommon.SubProtocolH\x00R\x0estickerContent\x12;\n" +
  2567. "\fvideoContent\x18\x06 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoContent\x12\x16\n" +
  2568. "\x06noteID\x18\x01 \x01(\tR\x06noteID\x121\n" +
  2569. "\bnoteText\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\bnoteText\x12(\n" +
  2570. "\x0fnoteTimestampMS\x18\x03 \x01(\x03R\x0fnoteTimestampMSB\x12\n" +
  2571. "\x10noteReplyContent\x1a=\n" +
  2572. "\x13BumpExistingMessage\x12&\n" +
  2573. "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1aD\n" +
  2574. "\x13ImageGalleryMessage\x12-\n" +
  2575. "\x06images\x18\x01 \x03(\v2\x15.WACommon.SubProtocolR\x06images\x1a\xc3\x01\n" +
  2576. "\x10ScreenshotAction\x12q\n" +
  2577. "\x0escreenshotType\x18\x01 \x01(\x0e2I.WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotTypeR\x0escreenshotType\"<\n" +
  2578. "\x0eScreenshotType\x12\x14\n" +
  2579. "\x10SCREENSHOT_IMAGE\x10\x01\x12\x14\n" +
  2580. "\x10SCREEN_RECORDING\x10\x02\x1a\xf3\x01\n" +
  2581. "\x1eExtendedContentMessageWithSear\x12\x16\n" +
  2582. "\x06searID\x18\x01 \x01(\tR\x06searID\x12\x18\n" +
  2583. "\apayload\x18\x02 \x01(\fR\apayload\x12\x1c\n" +
  2584. "\tnativeURL\x18\x03 \x01(\tR\tnativeURL\x12K\n" +
  2585. "\x15searAssociatedMessage\x18\x04 \x01(\v2\x15.WACommon.SubProtocolR\x15searAssociatedMessage\x124\n" +
  2586. "\x15searSentWithMessageID\x18\x05 \x01(\tR\x15searSentWithMessageID\x1a\x96\x02\n" +
  2587. "\x17RavenActionNotifMessage\x12&\n" +
  2588. "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12(\n" +
  2589. "\x0factionTimestamp\x18\x02 \x01(\x03R\x0factionTimestamp\x12l\n" +
  2590. "\n" +
  2591. "actionType\x18\x03 \x01(\x0e2L.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionTypeR\n" +
  2592. "actionType\";\n" +
  2593. "\n" +
  2594. "ActionType\x12\n" +
  2595. "\n" +
  2596. "\x06PLAYED\x10\x00\x12\x0e\n" +
  2597. "\n" +
  2598. "SCREENSHOT\x10\x01\x12\x11\n" +
  2599. "\rFORCE_DISABLE\x10\x02\x1a\xc8\x02\n" +
  2600. "\fRavenMessage\x12;\n" +
  2601. "\fimageMessage\x18\x02 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fimageMessage\x12;\n" +
  2602. "\fvideoMessage\x18\x03 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoMessage\x12j\n" +
  2603. "\rephemeralType\x18\x01 \x01(\x0e2D.WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralTypeR\rephemeralType\"B\n" +
  2604. "\rEphemeralType\x12\r\n" +
  2605. "\tVIEW_ONCE\x10\x00\x12\x10\n" +
  2606. "\fALLOW_REPLAY\x10\x01\x12\x10\n" +
  2607. "\fKEEP_IN_CHAT\x10\x02B\x0e\n" +
  2608. "\fmediaContent\x1a\xb6\x01\n" +
  2609. "\rCommonSticker\x12e\n" +
  2610. "\vstickerType\x18\x01 \x01(\x0e2C.WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerTypeR\vstickerType\">\n" +
  2611. "\vStickerType\x12\x0e\n" +
  2612. "\n" +
  2613. "SMALL_LIKE\x10\x01\x12\x0f\n" +
  2614. "\vMEDIUM_LIKE\x10\x02\x12\x0e\n" +
  2615. "\n" +
  2616. "LARGE_LIKE\x10\x03B\t\n" +
  2617. "\acontentB2Z0git.bobomao.top/joey/testwh/proto/waArmadilloApplication"
  2618. var (
  2619. file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce sync.Once
  2620. file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData []byte
  2621. )
  2622. func file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP() []byte {
  2623. file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce.Do(func() {
  2624. file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)))
  2625. })
  2626. return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData
  2627. }
  2628. var file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes = make([]protoimpl.EnumInfo, 8)
  2629. var file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes = make([]protoimpl.MessageInfo, 33)
  2630. var file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = []any{
  2631. (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)(0), // 0: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
  2632. (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType)(0), // 1: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.InterventionType
  2633. (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType)(0), // 2: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.SpectraActionType
  2634. (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)(0), // 3: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
  2635. (Armadillo_Content_ScreenshotAction_ScreenshotType)(0), // 4: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
  2636. (Armadillo_Content_RavenActionNotifMessage_ActionType)(0), // 5: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
  2637. (Armadillo_Content_RavenMessage_EphemeralType)(0), // 6: WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
  2638. (Armadillo_Content_CommonSticker_StickerType)(0), // 7: WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
  2639. (*Armadillo)(nil), // 8: WAArmadilloApplication.Armadillo
  2640. (*Armadillo_Metadata)(nil), // 9: WAArmadilloApplication.Armadillo.Metadata
  2641. (*Armadillo_Payload)(nil), // 10: WAArmadilloApplication.Armadillo.Payload
  2642. (*Armadillo_SubProtocolPayload)(nil), // 11: WAArmadilloApplication.Armadillo.SubProtocolPayload
  2643. (*Armadillo_Signal)(nil), // 12: WAArmadilloApplication.Armadillo.Signal
  2644. (*Armadillo_ApplicationData)(nil), // 13: WAArmadilloApplication.Armadillo.ApplicationData
  2645. (*Armadillo_Content)(nil), // 14: WAArmadilloApplication.Armadillo.Content
  2646. (*Armadillo_Signal_EncryptedBackupsSecrets)(nil), // 15: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
  2647. (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch)(nil), // 16: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
  2648. (*Armadillo_ApplicationData_MessageHistoryDocumentMessage)(nil), // 17: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
  2649. (*Armadillo_ApplicationData_AIBotResponseMessage)(nil), // 18: WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
  2650. (*Armadillo_ApplicationData_MetadataSyncAction)(nil), // 19: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
  2651. (*Armadillo_ApplicationData_MetadataSyncNotification)(nil), // 20: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
  2652. (*Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction)(nil), // 21: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction
  2653. (*Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction)(nil), // 22: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction
  2654. (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction)(nil), // 23: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
  2655. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction)(nil), // 24: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
  2656. (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage)(nil), // 25: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
  2657. (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange)(nil), // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
  2658. (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete)(nil), // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
  2659. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead)(nil), // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
  2660. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete)(nil), // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
  2661. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive)(nil), // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
  2662. (*Armadillo_Content_PaymentsTransactionMessage)(nil), // 31: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
  2663. (*Armadillo_Content_NetworkVerificationMessage)(nil), // 32: WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
  2664. (*Armadillo_Content_NoteReplyMessage)(nil), // 33: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
  2665. (*Armadillo_Content_BumpExistingMessage)(nil), // 34: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
  2666. (*Armadillo_Content_ImageGalleryMessage)(nil), // 35: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
  2667. (*Armadillo_Content_ScreenshotAction)(nil), // 36: WAArmadilloApplication.Armadillo.Content.ScreenshotAction
  2668. (*Armadillo_Content_ExtendedContentMessageWithSear)(nil), // 37: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
  2669. (*Armadillo_Content_RavenActionNotifMessage)(nil), // 38: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
  2670. (*Armadillo_Content_RavenMessage)(nil), // 39: WAArmadilloApplication.Armadillo.Content.RavenMessage
  2671. (*Armadillo_Content_CommonSticker)(nil), // 40: WAArmadilloApplication.Armadillo.Content.CommonSticker
  2672. (waCommon.FutureProofBehavior)(0), // 41: WACommon.FutureProofBehavior
  2673. (*waArmadilloXMA.ExtendedContentMessage)(nil), // 42: WAArmadilloXMA.ExtendedContentMessage
  2674. (*waCommon.SubProtocol)(nil), // 43: WACommon.SubProtocol
  2675. (*waCommon.MessageKey)(nil), // 44: WACommon.MessageKey
  2676. (*waCommon.MessageText)(nil), // 45: WACommon.MessageText
  2677. }
  2678. var file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = []int32{
  2679. 10, // 0: WAArmadilloApplication.Armadillo.payload:type_name -> WAArmadilloApplication.Armadillo.Payload
  2680. 9, // 1: WAArmadilloApplication.Armadillo.metadata:type_name -> WAArmadilloApplication.Armadillo.Metadata
  2681. 14, // 2: WAArmadilloApplication.Armadillo.Payload.content:type_name -> WAArmadilloApplication.Armadillo.Content
  2682. 13, // 3: WAArmadilloApplication.Armadillo.Payload.applicationData:type_name -> WAArmadilloApplication.Armadillo.ApplicationData
  2683. 12, // 4: WAArmadilloApplication.Armadillo.Payload.signal:type_name -> WAArmadilloApplication.Armadillo.Signal
  2684. 11, // 5: WAArmadilloApplication.Armadillo.Payload.subProtocol:type_name -> WAArmadilloApplication.Armadillo.SubProtocolPayload
  2685. 41, // 6: WAArmadilloApplication.Armadillo.SubProtocolPayload.futureProof:type_name -> WACommon.FutureProofBehavior
  2686. 15, // 7: WAArmadilloApplication.Armadillo.Signal.encryptedBackupsSecrets:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
  2687. 20, // 8: WAArmadilloApplication.Armadillo.ApplicationData.metadataSync:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
  2688. 18, // 9: WAArmadilloApplication.Armadillo.ApplicationData.aiBotResponse:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
  2689. 17, // 10: WAArmadilloApplication.Armadillo.ApplicationData.messageHistoryDocumentMessage:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
  2690. 40, // 11: WAArmadilloApplication.Armadillo.Content.commonSticker:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker
  2691. 36, // 12: WAArmadilloApplication.Armadillo.Content.screenshotAction:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction
  2692. 42, // 13: WAArmadilloApplication.Armadillo.Content.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
  2693. 39, // 14: WAArmadilloApplication.Armadillo.Content.ravenMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
  2694. 38, // 15: WAArmadilloApplication.Armadillo.Content.ravenActionNotifMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
  2695. 37, // 16: WAArmadilloApplication.Armadillo.Content.extendedMessageContentWithSear:type_name -> WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
  2696. 35, // 17: WAArmadilloApplication.Armadillo.Content.imageGalleryMessage:type_name -> WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
  2697. 31, // 18: WAArmadilloApplication.Armadillo.Content.paymentsTransactionMessage:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
  2698. 34, // 19: WAArmadilloApplication.Armadillo.Content.bumpExistingMessage:type_name -> WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
  2699. 33, // 20: WAArmadilloApplication.Armadillo.Content.noteReplyMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
  2700. 39, // 21: WAArmadilloApplication.Armadillo.Content.ravenMessageMsgr:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
  2701. 32, // 22: WAArmadilloApplication.Armadillo.Content.networkVerificationMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
  2702. 16, // 23: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.epoch:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
  2703. 0, // 24: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.status:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
  2704. 43, // 25: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage.document:type_name -> WACommon.SubProtocol
  2705. 24, // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.chatAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
  2706. 23, // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.messageAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
  2707. 22, // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.spectraAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction
  2708. 21, // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.attachmentInterventionAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction
  2709. 19, // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification.actions:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
  2710. 44, // 31: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.messageKey:type_name -> WACommon.MessageKey
  2711. 1, // 32: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.interventionType:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.InterventionType
  2712. 44, // 33: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.key:type_name -> WACommon.MessageKey
  2713. 2, // 34: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.actionType:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.SpectraActionType
  2714. 27, // 35: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.messageDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
  2715. 44, // 36: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.key:type_name -> WACommon.MessageKey
  2716. 30, // 37: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatArchive:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
  2717. 29, // 38: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
  2718. 28, // 39: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatRead:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
  2719. 44, // 40: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
  2720. 25, // 41: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange.messages:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
  2721. 26, // 42: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
  2722. 26, // 43: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
  2723. 26, // 44: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
  2724. 3, // 45: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.paymentStatus:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
  2725. 42, // 46: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
  2726. 45, // 47: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.textContent:type_name -> WACommon.MessageText
  2727. 43, // 48: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.stickerContent:type_name -> WACommon.SubProtocol
  2728. 43, // 49: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.videoContent:type_name -> WACommon.SubProtocol
  2729. 45, // 50: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.noteText:type_name -> WACommon.MessageText
  2730. 44, // 51: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage.key:type_name -> WACommon.MessageKey
  2731. 43, // 52: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage.images:type_name -> WACommon.SubProtocol
  2732. 4, // 53: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.screenshotType:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
  2733. 43, // 54: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear.searAssociatedMessage:type_name -> WACommon.SubProtocol
  2734. 44, // 55: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.key:type_name -> WACommon.MessageKey
  2735. 5, // 56: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.actionType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
  2736. 43, // 57: WAArmadilloApplication.Armadillo.Content.RavenMessage.imageMessage:type_name -> WACommon.SubProtocol
  2737. 43, // 58: WAArmadilloApplication.Armadillo.Content.RavenMessage.videoMessage:type_name -> WACommon.SubProtocol
  2738. 6, // 59: WAArmadilloApplication.Armadillo.Content.RavenMessage.ephemeralType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
  2739. 7, // 60: WAArmadilloApplication.Armadillo.Content.CommonSticker.stickerType:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
  2740. 61, // [61:61] is the sub-list for method output_type
  2741. 61, // [61:61] is the sub-list for method input_type
  2742. 61, // [61:61] is the sub-list for extension type_name
  2743. 61, // [61:61] is the sub-list for extension extendee
  2744. 0, // [0:61] is the sub-list for field type_name
  2745. }
  2746. func init() { file_waArmadilloApplication_WAArmadilloApplication_proto_init() }
  2747. func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
  2748. if File_waArmadilloApplication_WAArmadilloApplication_proto != nil {
  2749. return
  2750. }
  2751. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2].OneofWrappers = []any{
  2752. (*Armadillo_Payload_Content)(nil),
  2753. (*Armadillo_Payload_ApplicationData)(nil),
  2754. (*Armadillo_Payload_Signal)(nil),
  2755. (*Armadillo_Payload_SubProtocol)(nil),
  2756. }
  2757. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4].OneofWrappers = []any{
  2758. (*Armadillo_Signal_EncryptedBackupsSecrets_)(nil),
  2759. }
  2760. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5].OneofWrappers = []any{
  2761. (*Armadillo_ApplicationData_MetadataSync)(nil),
  2762. (*Armadillo_ApplicationData_AiBotResponse)(nil),
  2763. (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_)(nil),
  2764. }
  2765. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6].OneofWrappers = []any{
  2766. (*Armadillo_Content_CommonSticker_)(nil),
  2767. (*Armadillo_Content_ScreenshotAction_)(nil),
  2768. (*Armadillo_Content_ExtendedContentMessage)(nil),
  2769. (*Armadillo_Content_RavenMessage_)(nil),
  2770. (*Armadillo_Content_RavenActionNotifMessage_)(nil),
  2771. (*Armadillo_Content_ExtendedMessageContentWithSear)(nil),
  2772. (*Armadillo_Content_ImageGalleryMessage_)(nil),
  2773. (*Armadillo_Content_PaymentsTransactionMessage_)(nil),
  2774. (*Armadillo_Content_BumpExistingMessage_)(nil),
  2775. (*Armadillo_Content_NoteReplyMessage_)(nil),
  2776. (*Armadillo_Content_RavenMessageMsgr)(nil),
  2777. (*Armadillo_Content_NetworkVerificationMessage_)(nil),
  2778. }
  2779. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11].OneofWrappers = []any{
  2780. (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction)(nil),
  2781. (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction)(nil),
  2782. (*Armadillo_ApplicationData_MetadataSyncAction_SpectraAction)(nil),
  2783. (*Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction)(nil),
  2784. }
  2785. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15].OneofWrappers = []any{
  2786. (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete)(nil),
  2787. }
  2788. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16].OneofWrappers = []any{
  2789. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive)(nil),
  2790. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete)(nil),
  2791. (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead)(nil),
  2792. }
  2793. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25].OneofWrappers = []any{
  2794. (*Armadillo_Content_NoteReplyMessage_TextContent)(nil),
  2795. (*Armadillo_Content_NoteReplyMessage_StickerContent)(nil),
  2796. (*Armadillo_Content_NoteReplyMessage_VideoContent)(nil),
  2797. }
  2798. file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[31].OneofWrappers = []any{
  2799. (*Armadillo_Content_RavenMessage_ImageMessage)(nil),
  2800. (*Armadillo_Content_RavenMessage_VideoMessage)(nil),
  2801. }
  2802. type x struct{}
  2803. out := protoimpl.TypeBuilder{
  2804. File: protoimpl.DescBuilder{
  2805. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  2806. RawDescriptor: unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)),
  2807. NumEnums: 8,
  2808. NumMessages: 33,
  2809. NumExtensions: 0,
  2810. NumServices: 0,
  2811. },
  2812. GoTypes: file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes,
  2813. DependencyIndexes: file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs,
  2814. EnumInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes,
  2815. MessageInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes,
  2816. }.Build()
  2817. File_waArmadilloApplication_WAArmadilloApplication_proto = out.File
  2818. file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = nil
  2819. file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = nil
  2820. }