| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285 |
- // Code generated by protoc-gen-go. DO NOT EDIT.
- // versions:
- // protoc-gen-go v1.36.10
- // protoc v3.21.12
- // source: waArmadilloApplication/WAArmadilloApplication.proto
- package waArmadilloApplication
- import (
- reflect "reflect"
- sync "sync"
- unsafe "unsafe"
- protoreflect "google.golang.org/protobuf/reflect/protoreflect"
- protoimpl "google.golang.org/protobuf/runtime/protoimpl"
- waArmadilloXMA "go.mau.fi/whatsmeow/proto/waArmadilloXMA"
- waCommon "go.mau.fi/whatsmeow/proto/waCommon"
- )
- const (
- // Verify that this generated code is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
- // Verify that runtime/protoimpl is sufficiently up-to-date.
- _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
- )
- type Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus int32
- const (
- Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 1
- Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_CLOSE Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus = 2
- )
- // Enum value maps for Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.
- var (
- Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_name = map[int32]string{
- 1: "ES_OPEN",
- 2: "ES_CLOSE",
- }
- Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus_value = map[string]int32{
- "ES_OPEN": 1,
- "ES_CLOSE": 2,
- }
- )
- func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Enum() *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
- p := new(Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)
- *p = x
- return p
- }
- func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0].Descriptor()
- }
- func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[0]
- }
- func (x Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus(num)
- return nil
- }
- // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus.Descriptor instead.
- func (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0, 0}
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType int32
- const (
- Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_UNKNOWN Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType = 0
- Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_NUDE Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType = 1
- Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_NOT_NUDE Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType = 2
- )
- // Enum value maps for Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType.
- var (
- Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType_name = map[int32]string{
- 0: "UNKNOWN",
- 1: "NUDE",
- 2: "NOT_NUDE",
- }
- Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType_value = map[string]int32{
- "UNKNOWN": 0,
- "NUDE": 1,
- "NOT_NUDE": 2,
- }
- )
- func (x Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Enum() *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType {
- p := new(Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType)
- *p = x
- return p
- }
- func (x Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1].Descriptor()
- }
- func (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[1]
- }
- func (x Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType(num)
- return nil
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType.Descriptor instead.
- func (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0, 0}
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType int32
- const (
- Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_TAKEDOWN Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType = 0
- Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_RESTORE Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType = 1
- )
- // Enum value maps for Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType.
- var (
- Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType_name = map[int32]string{
- 0: "TAKEDOWN",
- 1: "RESTORE",
- }
- Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType_value = map[string]int32{
- "TAKEDOWN": 0,
- "RESTORE": 1,
- }
- )
- func (x Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Enum() *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType {
- p := new(Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType)
- *p = x
- return p
- }
- func (x Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2].Descriptor()
- }
- func (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[2]
- }
- func (x Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType(num)
- return nil
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType.Descriptor instead.
- func (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1, 0}
- }
- type Armadillo_Content_PaymentsTransactionMessage_PaymentStatus int32
- const (
- Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 0
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 4
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 5
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 6
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 7
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_TRANSFER_FAILED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 8
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 9
- Armadillo_Content_PaymentsTransactionMessage_REQUEST_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 10
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_INITED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 11
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 12
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PENDING_RECIPIENT_VERIFICATION Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 13
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 14
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_COMPLETED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 15
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 16
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 17
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_REFUNDED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 18
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_PARTIAL_REFUND Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 19
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_CHARGED_BACK Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 20
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_EXPIRED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 21
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_DECLINED Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 22
- Armadillo_Content_PaymentsTransactionMessage_TRANSFER_UNAVAILABLE Armadillo_Content_PaymentsTransactionMessage_PaymentStatus = 23
- )
- // Enum value maps for Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.
- var (
- Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_name = map[int32]string{
- 0: "PAYMENT_UNKNOWN",
- 4: "REQUEST_INITED",
- 5: "REQUEST_DECLINED",
- 6: "REQUEST_TRANSFER_INITED",
- 7: "REQUEST_TRANSFER_COMPLETED",
- 8: "REQUEST_TRANSFER_FAILED",
- 9: "REQUEST_CANCELED",
- 10: "REQUEST_EXPIRED",
- 11: "TRANSFER_INITED",
- 12: "TRANSFER_PENDING",
- 13: "TRANSFER_PENDING_RECIPIENT_VERIFICATION",
- 14: "TRANSFER_CANCELED",
- 15: "TRANSFER_COMPLETED",
- 16: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED",
- 17: "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER",
- 18: "TRANSFER_REFUNDED",
- 19: "TRANSFER_PARTIAL_REFUND",
- 20: "TRANSFER_CHARGED_BACK",
- 21: "TRANSFER_EXPIRED",
- 22: "TRANSFER_DECLINED",
- 23: "TRANSFER_UNAVAILABLE",
- }
- Armadillo_Content_PaymentsTransactionMessage_PaymentStatus_value = map[string]int32{
- "PAYMENT_UNKNOWN": 0,
- "REQUEST_INITED": 4,
- "REQUEST_DECLINED": 5,
- "REQUEST_TRANSFER_INITED": 6,
- "REQUEST_TRANSFER_COMPLETED": 7,
- "REQUEST_TRANSFER_FAILED": 8,
- "REQUEST_CANCELED": 9,
- "REQUEST_EXPIRED": 10,
- "TRANSFER_INITED": 11,
- "TRANSFER_PENDING": 12,
- "TRANSFER_PENDING_RECIPIENT_VERIFICATION": 13,
- "TRANSFER_CANCELED": 14,
- "TRANSFER_COMPLETED": 15,
- "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED": 16,
- "TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER": 17,
- "TRANSFER_REFUNDED": 18,
- "TRANSFER_PARTIAL_REFUND": 19,
- "TRANSFER_CHARGED_BACK": 20,
- "TRANSFER_EXPIRED": 21,
- "TRANSFER_DECLINED": 22,
- "TRANSFER_UNAVAILABLE": 23,
- }
- )
- func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Enum() *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
- p := new(Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)
- *p = x
- return p
- }
- func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3].Descriptor()
- }
- func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[3]
- }
- func (x Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_Content_PaymentsTransactionMessage_PaymentStatus(num)
- return nil
- }
- // Deprecated: Use Armadillo_Content_PaymentsTransactionMessage_PaymentStatus.Descriptor instead.
- func (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0, 0}
- }
- type Armadillo_Content_ScreenshotAction_ScreenshotType int32
- const (
- Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE Armadillo_Content_ScreenshotAction_ScreenshotType = 1
- Armadillo_Content_ScreenshotAction_SCREEN_RECORDING Armadillo_Content_ScreenshotAction_ScreenshotType = 2
- )
- // Enum value maps for Armadillo_Content_ScreenshotAction_ScreenshotType.
- var (
- Armadillo_Content_ScreenshotAction_ScreenshotType_name = map[int32]string{
- 1: "SCREENSHOT_IMAGE",
- 2: "SCREEN_RECORDING",
- }
- Armadillo_Content_ScreenshotAction_ScreenshotType_value = map[string]int32{
- "SCREENSHOT_IMAGE": 1,
- "SCREEN_RECORDING": 2,
- }
- )
- func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Enum() *Armadillo_Content_ScreenshotAction_ScreenshotType {
- p := new(Armadillo_Content_ScreenshotAction_ScreenshotType)
- *p = x
- return p
- }
- func (x Armadillo_Content_ScreenshotAction_ScreenshotType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_Content_ScreenshotAction_ScreenshotType) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4].Descriptor()
- }
- func (Armadillo_Content_ScreenshotAction_ScreenshotType) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[4]
- }
- func (x Armadillo_Content_ScreenshotAction_ScreenshotType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_Content_ScreenshotAction_ScreenshotType) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_Content_ScreenshotAction_ScreenshotType(num)
- return nil
- }
- // Deprecated: Use Armadillo_Content_ScreenshotAction_ScreenshotType.Descriptor instead.
- func (Armadillo_Content_ScreenshotAction_ScreenshotType) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5, 0}
- }
- type Armadillo_Content_RavenActionNotifMessage_ActionType int32
- const (
- Armadillo_Content_RavenActionNotifMessage_PLAYED Armadillo_Content_RavenActionNotifMessage_ActionType = 0
- Armadillo_Content_RavenActionNotifMessage_SCREENSHOT Armadillo_Content_RavenActionNotifMessage_ActionType = 1
- Armadillo_Content_RavenActionNotifMessage_FORCE_DISABLE Armadillo_Content_RavenActionNotifMessage_ActionType = 2
- )
- // Enum value maps for Armadillo_Content_RavenActionNotifMessage_ActionType.
- var (
- Armadillo_Content_RavenActionNotifMessage_ActionType_name = map[int32]string{
- 0: "PLAYED",
- 1: "SCREENSHOT",
- 2: "FORCE_DISABLE",
- }
- Armadillo_Content_RavenActionNotifMessage_ActionType_value = map[string]int32{
- "PLAYED": 0,
- "SCREENSHOT": 1,
- "FORCE_DISABLE": 2,
- }
- )
- func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Enum() *Armadillo_Content_RavenActionNotifMessage_ActionType {
- p := new(Armadillo_Content_RavenActionNotifMessage_ActionType)
- *p = x
- return p
- }
- func (x Armadillo_Content_RavenActionNotifMessage_ActionType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_Content_RavenActionNotifMessage_ActionType) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5].Descriptor()
- }
- func (Armadillo_Content_RavenActionNotifMessage_ActionType) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[5]
- }
- func (x Armadillo_Content_RavenActionNotifMessage_ActionType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_Content_RavenActionNotifMessage_ActionType) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_Content_RavenActionNotifMessage_ActionType(num)
- return nil
- }
- // Deprecated: Use Armadillo_Content_RavenActionNotifMessage_ActionType.Descriptor instead.
- func (Armadillo_Content_RavenActionNotifMessage_ActionType) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7, 0}
- }
- type Armadillo_Content_RavenMessage_EphemeralType int32
- const (
- Armadillo_Content_RavenMessage_VIEW_ONCE Armadillo_Content_RavenMessage_EphemeralType = 0
- Armadillo_Content_RavenMessage_ALLOW_REPLAY Armadillo_Content_RavenMessage_EphemeralType = 1
- Armadillo_Content_RavenMessage_KEEP_IN_CHAT Armadillo_Content_RavenMessage_EphemeralType = 2
- )
- // Enum value maps for Armadillo_Content_RavenMessage_EphemeralType.
- var (
- Armadillo_Content_RavenMessage_EphemeralType_name = map[int32]string{
- 0: "VIEW_ONCE",
- 1: "ALLOW_REPLAY",
- 2: "KEEP_IN_CHAT",
- }
- Armadillo_Content_RavenMessage_EphemeralType_value = map[string]int32{
- "VIEW_ONCE": 0,
- "ALLOW_REPLAY": 1,
- "KEEP_IN_CHAT": 2,
- }
- )
- func (x Armadillo_Content_RavenMessage_EphemeralType) Enum() *Armadillo_Content_RavenMessage_EphemeralType {
- p := new(Armadillo_Content_RavenMessage_EphemeralType)
- *p = x
- return p
- }
- func (x Armadillo_Content_RavenMessage_EphemeralType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_Content_RavenMessage_EphemeralType) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[6].Descriptor()
- }
- func (Armadillo_Content_RavenMessage_EphemeralType) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[6]
- }
- func (x Armadillo_Content_RavenMessage_EphemeralType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_Content_RavenMessage_EphemeralType) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_Content_RavenMessage_EphemeralType(num)
- return nil
- }
- // Deprecated: Use Armadillo_Content_RavenMessage_EphemeralType.Descriptor instead.
- func (Armadillo_Content_RavenMessage_EphemeralType) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8, 0}
- }
- type Armadillo_Content_CommonSticker_StickerType int32
- const (
- Armadillo_Content_CommonSticker_SMALL_LIKE Armadillo_Content_CommonSticker_StickerType = 1
- Armadillo_Content_CommonSticker_MEDIUM_LIKE Armadillo_Content_CommonSticker_StickerType = 2
- Armadillo_Content_CommonSticker_LARGE_LIKE Armadillo_Content_CommonSticker_StickerType = 3
- )
- // Enum value maps for Armadillo_Content_CommonSticker_StickerType.
- var (
- Armadillo_Content_CommonSticker_StickerType_name = map[int32]string{
- 1: "SMALL_LIKE",
- 2: "MEDIUM_LIKE",
- 3: "LARGE_LIKE",
- }
- Armadillo_Content_CommonSticker_StickerType_value = map[string]int32{
- "SMALL_LIKE": 1,
- "MEDIUM_LIKE": 2,
- "LARGE_LIKE": 3,
- }
- )
- func (x Armadillo_Content_CommonSticker_StickerType) Enum() *Armadillo_Content_CommonSticker_StickerType {
- p := new(Armadillo_Content_CommonSticker_StickerType)
- *p = x
- return p
- }
- func (x Armadillo_Content_CommonSticker_StickerType) String() string {
- return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
- }
- func (Armadillo_Content_CommonSticker_StickerType) Descriptor() protoreflect.EnumDescriptor {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[7].Descriptor()
- }
- func (Armadillo_Content_CommonSticker_StickerType) Type() protoreflect.EnumType {
- return &file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes[7]
- }
- func (x Armadillo_Content_CommonSticker_StickerType) Number() protoreflect.EnumNumber {
- return protoreflect.EnumNumber(x)
- }
- // Deprecated: Do not use.
- func (x *Armadillo_Content_CommonSticker_StickerType) UnmarshalJSON(b []byte) error {
- num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
- if err != nil {
- return err
- }
- *x = Armadillo_Content_CommonSticker_StickerType(num)
- return nil
- }
- // Deprecated: Use Armadillo_Content_CommonSticker_StickerType.Descriptor instead.
- func (Armadillo_Content_CommonSticker_StickerType) EnumDescriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9, 0}
- }
- type Armadillo struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Payload *Armadillo_Payload `protobuf:"bytes,1,opt,name=payload" json:"payload,omitempty"`
- Metadata *Armadillo_Metadata `protobuf:"bytes,2,opt,name=metadata" json:"metadata,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo) Reset() {
- *x = Armadillo{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo) ProtoMessage() {}
- func (x *Armadillo) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[0]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo.ProtoReflect.Descriptor instead.
- func (*Armadillo) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0}
- }
- func (x *Armadillo) GetPayload() *Armadillo_Payload {
- if x != nil {
- return x.Payload
- }
- return nil
- }
- func (x *Armadillo) GetMetadata() *Armadillo_Metadata {
- if x != nil {
- return x.Metadata
- }
- return nil
- }
- type Armadillo_Metadata struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Metadata) Reset() {
- *x = Armadillo_Metadata{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Metadata) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Metadata) ProtoMessage() {}
- func (x *Armadillo_Metadata) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[1]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Metadata.ProtoReflect.Descriptor instead.
- func (*Armadillo_Metadata) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 0}
- }
- type Armadillo_Payload struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to Payload:
- //
- // *Armadillo_Payload_Content
- // *Armadillo_Payload_ApplicationData
- // *Armadillo_Payload_Signal
- // *Armadillo_Payload_SubProtocol
- Payload isArmadillo_Payload_Payload `protobuf_oneof:"payload"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Payload) Reset() {
- *x = Armadillo_Payload{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Payload) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Payload) ProtoMessage() {}
- func (x *Armadillo_Payload) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Payload.ProtoReflect.Descriptor instead.
- func (*Armadillo_Payload) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 1}
- }
- func (x *Armadillo_Payload) GetPayload() isArmadillo_Payload_Payload {
- if x != nil {
- return x.Payload
- }
- return nil
- }
- func (x *Armadillo_Payload) GetContent() *Armadillo_Content {
- if x != nil {
- if x, ok := x.Payload.(*Armadillo_Payload_Content); ok {
- return x.Content
- }
- }
- return nil
- }
- func (x *Armadillo_Payload) GetApplicationData() *Armadillo_ApplicationData {
- if x != nil {
- if x, ok := x.Payload.(*Armadillo_Payload_ApplicationData); ok {
- return x.ApplicationData
- }
- }
- return nil
- }
- func (x *Armadillo_Payload) GetSignal() *Armadillo_Signal {
- if x != nil {
- if x, ok := x.Payload.(*Armadillo_Payload_Signal); ok {
- return x.Signal
- }
- }
- return nil
- }
- func (x *Armadillo_Payload) GetSubProtocol() *Armadillo_SubProtocolPayload {
- if x != nil {
- if x, ok := x.Payload.(*Armadillo_Payload_SubProtocol); ok {
- return x.SubProtocol
- }
- }
- return nil
- }
- type isArmadillo_Payload_Payload interface {
- isArmadillo_Payload_Payload()
- }
- type Armadillo_Payload_Content struct {
- Content *Armadillo_Content `protobuf:"bytes,1,opt,name=content,oneof"`
- }
- type Armadillo_Payload_ApplicationData struct {
- ApplicationData *Armadillo_ApplicationData `protobuf:"bytes,2,opt,name=applicationData,oneof"`
- }
- type Armadillo_Payload_Signal struct {
- Signal *Armadillo_Signal `protobuf:"bytes,3,opt,name=signal,oneof"`
- }
- type Armadillo_Payload_SubProtocol struct {
- SubProtocol *Armadillo_SubProtocolPayload `protobuf:"bytes,4,opt,name=subProtocol,oneof"`
- }
- func (*Armadillo_Payload_Content) isArmadillo_Payload_Payload() {}
- func (*Armadillo_Payload_ApplicationData) isArmadillo_Payload_Payload() {}
- func (*Armadillo_Payload_Signal) isArmadillo_Payload_Payload() {}
- func (*Armadillo_Payload_SubProtocol) isArmadillo_Payload_Payload() {}
- type Armadillo_SubProtocolPayload struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- FutureProof *waCommon.FutureProofBehavior `protobuf:"varint,1,opt,name=futureProof,enum=WACommon.FutureProofBehavior" json:"futureProof,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_SubProtocolPayload) Reset() {
- *x = Armadillo_SubProtocolPayload{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_SubProtocolPayload) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_SubProtocolPayload) ProtoMessage() {}
- func (x *Armadillo_SubProtocolPayload) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[3]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_SubProtocolPayload.ProtoReflect.Descriptor instead.
- func (*Armadillo_SubProtocolPayload) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 2}
- }
- func (x *Armadillo_SubProtocolPayload) GetFutureProof() waCommon.FutureProofBehavior {
- if x != nil && x.FutureProof != nil {
- return *x.FutureProof
- }
- return waCommon.FutureProofBehavior(0)
- }
- type Armadillo_Signal struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to Signal:
- //
- // *Armadillo_Signal_EncryptedBackupsSecrets_
- Signal isArmadillo_Signal_Signal `protobuf_oneof:"signal"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Signal) Reset() {
- *x = Armadillo_Signal{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Signal) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Signal) ProtoMessage() {}
- func (x *Armadillo_Signal) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Signal.ProtoReflect.Descriptor instead.
- func (*Armadillo_Signal) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3}
- }
- func (x *Armadillo_Signal) GetSignal() isArmadillo_Signal_Signal {
- if x != nil {
- return x.Signal
- }
- return nil
- }
- func (x *Armadillo_Signal) GetEncryptedBackupsSecrets() *Armadillo_Signal_EncryptedBackupsSecrets {
- if x != nil {
- if x, ok := x.Signal.(*Armadillo_Signal_EncryptedBackupsSecrets_); ok {
- return x.EncryptedBackupsSecrets
- }
- }
- return nil
- }
- type isArmadillo_Signal_Signal interface {
- isArmadillo_Signal_Signal()
- }
- type Armadillo_Signal_EncryptedBackupsSecrets_ struct {
- EncryptedBackupsSecrets *Armadillo_Signal_EncryptedBackupsSecrets `protobuf:"bytes,1,opt,name=encryptedBackupsSecrets,oneof"`
- }
- func (*Armadillo_Signal_EncryptedBackupsSecrets_) isArmadillo_Signal_Signal() {}
- type Armadillo_ApplicationData struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to ApplicationData:
- //
- // *Armadillo_ApplicationData_MetadataSync
- // *Armadillo_ApplicationData_AiBotResponse
- // *Armadillo_ApplicationData_MessageHistoryDocumentMessage_
- ApplicationData isArmadillo_ApplicationData_ApplicationData `protobuf_oneof:"applicationData"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData) Reset() {
- *x = Armadillo_ApplicationData{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData) ProtoMessage() {}
- func (x *Armadillo_ApplicationData) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4}
- }
- func (x *Armadillo_ApplicationData) GetApplicationData() isArmadillo_ApplicationData_ApplicationData {
- if x != nil {
- return x.ApplicationData
- }
- return nil
- }
- func (x *Armadillo_ApplicationData) GetMetadataSync() *Armadillo_ApplicationData_MetadataSyncNotification {
- if x != nil {
- if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MetadataSync); ok {
- return x.MetadataSync
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData) GetAiBotResponse() *Armadillo_ApplicationData_AIBotResponseMessage {
- if x != nil {
- if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_AiBotResponse); ok {
- return x.AiBotResponse
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData) GetMessageHistoryDocumentMessage() *Armadillo_ApplicationData_MessageHistoryDocumentMessage {
- if x != nil {
- if x, ok := x.ApplicationData.(*Armadillo_ApplicationData_MessageHistoryDocumentMessage_); ok {
- return x.MessageHistoryDocumentMessage
- }
- }
- return nil
- }
- type isArmadillo_ApplicationData_ApplicationData interface {
- isArmadillo_ApplicationData_ApplicationData()
- }
- type Armadillo_ApplicationData_MetadataSync struct {
- MetadataSync *Armadillo_ApplicationData_MetadataSyncNotification `protobuf:"bytes,1,opt,name=metadataSync,oneof"`
- }
- type Armadillo_ApplicationData_AiBotResponse struct {
- AiBotResponse *Armadillo_ApplicationData_AIBotResponseMessage `protobuf:"bytes,2,opt,name=aiBotResponse,oneof"`
- }
- type Armadillo_ApplicationData_MessageHistoryDocumentMessage_ struct {
- MessageHistoryDocumentMessage *Armadillo_ApplicationData_MessageHistoryDocumentMessage `protobuf:"bytes,3,opt,name=messageHistoryDocumentMessage,oneof"`
- }
- func (*Armadillo_ApplicationData_MetadataSync) isArmadillo_ApplicationData_ApplicationData() {}
- func (*Armadillo_ApplicationData_AiBotResponse) isArmadillo_ApplicationData_ApplicationData() {}
- func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_) isArmadillo_ApplicationData_ApplicationData() {
- }
- type Armadillo_Content struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to Content:
- //
- // *Armadillo_Content_CommonSticker_
- // *Armadillo_Content_ScreenshotAction_
- // *Armadillo_Content_ExtendedContentMessage
- // *Armadillo_Content_RavenMessage_
- // *Armadillo_Content_RavenActionNotifMessage_
- // *Armadillo_Content_ExtendedMessageContentWithSear
- // *Armadillo_Content_ImageGalleryMessage_
- // *Armadillo_Content_PaymentsTransactionMessage_
- // *Armadillo_Content_BumpExistingMessage_
- // *Armadillo_Content_NoteReplyMessage_
- // *Armadillo_Content_RavenMessageMsgr
- // *Armadillo_Content_NetworkVerificationMessage_
- Content isArmadillo_Content_Content `protobuf_oneof:"content"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content) Reset() {
- *x = Armadillo_Content{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content) ProtoMessage() {}
- func (x *Armadillo_Content) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5}
- }
- func (x *Armadillo_Content) GetContent() isArmadillo_Content_Content {
- if x != nil {
- return x.Content
- }
- return nil
- }
- func (x *Armadillo_Content) GetCommonSticker() *Armadillo_Content_CommonSticker {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_CommonSticker_); ok {
- return x.CommonSticker
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetScreenshotAction() *Armadillo_Content_ScreenshotAction {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_ScreenshotAction_); ok {
- return x.ScreenshotAction
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_ExtendedContentMessage); ok {
- return x.ExtendedContentMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetRavenMessage() *Armadillo_Content_RavenMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_RavenMessage_); ok {
- return x.RavenMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetRavenActionNotifMessage() *Armadillo_Content_RavenActionNotifMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_RavenActionNotifMessage_); ok {
- return x.RavenActionNotifMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetExtendedMessageContentWithSear() *Armadillo_Content_ExtendedContentMessageWithSear {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_ExtendedMessageContentWithSear); ok {
- return x.ExtendedMessageContentWithSear
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetImageGalleryMessage() *Armadillo_Content_ImageGalleryMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_ImageGalleryMessage_); ok {
- return x.ImageGalleryMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetPaymentsTransactionMessage() *Armadillo_Content_PaymentsTransactionMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_PaymentsTransactionMessage_); ok {
- return x.PaymentsTransactionMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetBumpExistingMessage() *Armadillo_Content_BumpExistingMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_BumpExistingMessage_); ok {
- return x.BumpExistingMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetNoteReplyMessage() *Armadillo_Content_NoteReplyMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_NoteReplyMessage_); ok {
- return x.NoteReplyMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetRavenMessageMsgr() *Armadillo_Content_RavenMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_RavenMessageMsgr); ok {
- return x.RavenMessageMsgr
- }
- }
- return nil
- }
- func (x *Armadillo_Content) GetNetworkVerificationMessage() *Armadillo_Content_NetworkVerificationMessage {
- if x != nil {
- if x, ok := x.Content.(*Armadillo_Content_NetworkVerificationMessage_); ok {
- return x.NetworkVerificationMessage
- }
- }
- return nil
- }
- type isArmadillo_Content_Content interface {
- isArmadillo_Content_Content()
- }
- type Armadillo_Content_CommonSticker_ struct {
- CommonSticker *Armadillo_Content_CommonSticker `protobuf:"bytes,1,opt,name=commonSticker,oneof"`
- }
- type Armadillo_Content_ScreenshotAction_ struct {
- ScreenshotAction *Armadillo_Content_ScreenshotAction `protobuf:"bytes,3,opt,name=screenshotAction,oneof"`
- }
- type Armadillo_Content_ExtendedContentMessage struct {
- ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,4,opt,name=extendedContentMessage,oneof"`
- }
- type Armadillo_Content_RavenMessage_ struct {
- RavenMessage *Armadillo_Content_RavenMessage `protobuf:"bytes,5,opt,name=ravenMessage,oneof"`
- }
- type Armadillo_Content_RavenActionNotifMessage_ struct {
- RavenActionNotifMessage *Armadillo_Content_RavenActionNotifMessage `protobuf:"bytes,6,opt,name=ravenActionNotifMessage,oneof"`
- }
- type Armadillo_Content_ExtendedMessageContentWithSear struct {
- ExtendedMessageContentWithSear *Armadillo_Content_ExtendedContentMessageWithSear `protobuf:"bytes,7,opt,name=extendedMessageContentWithSear,oneof"`
- }
- type Armadillo_Content_ImageGalleryMessage_ struct {
- ImageGalleryMessage *Armadillo_Content_ImageGalleryMessage `protobuf:"bytes,8,opt,name=imageGalleryMessage,oneof"`
- }
- type Armadillo_Content_PaymentsTransactionMessage_ struct {
- PaymentsTransactionMessage *Armadillo_Content_PaymentsTransactionMessage `protobuf:"bytes,10,opt,name=paymentsTransactionMessage,oneof"`
- }
- type Armadillo_Content_BumpExistingMessage_ struct {
- BumpExistingMessage *Armadillo_Content_BumpExistingMessage `protobuf:"bytes,11,opt,name=bumpExistingMessage,oneof"`
- }
- type Armadillo_Content_NoteReplyMessage_ struct {
- NoteReplyMessage *Armadillo_Content_NoteReplyMessage `protobuf:"bytes,13,opt,name=noteReplyMessage,oneof"`
- }
- type Armadillo_Content_RavenMessageMsgr struct {
- RavenMessageMsgr *Armadillo_Content_RavenMessage `protobuf:"bytes,14,opt,name=ravenMessageMsgr,oneof"`
- }
- type Armadillo_Content_NetworkVerificationMessage_ struct {
- NetworkVerificationMessage *Armadillo_Content_NetworkVerificationMessage `protobuf:"bytes,15,opt,name=networkVerificationMessage,oneof"`
- }
- func (*Armadillo_Content_CommonSticker_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_ScreenshotAction_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_ExtendedContentMessage) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_RavenMessage_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_RavenActionNotifMessage_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_ExtendedMessageContentWithSear) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_ImageGalleryMessage_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_PaymentsTransactionMessage_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_BumpExistingMessage_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_NoteReplyMessage_) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_RavenMessageMsgr) isArmadillo_Content_Content() {}
- func (*Armadillo_Content_NetworkVerificationMessage_) isArmadillo_Content_Content() {}
- type Armadillo_Signal_EncryptedBackupsSecrets struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- BackupID *uint64 `protobuf:"varint,1,opt,name=backupID" json:"backupID,omitempty"`
- ServerDataID *uint64 `protobuf:"varint,2,opt,name=serverDataID" json:"serverDataID,omitempty"`
- Epoch []*Armadillo_Signal_EncryptedBackupsSecrets_Epoch `protobuf:"bytes,3,rep,name=epoch" json:"epoch,omitempty"`
- TempOcmfClientState []byte `protobuf:"bytes,4,opt,name=tempOcmfClientState" json:"tempOcmfClientState,omitempty"`
- MailboxRootKey []byte `protobuf:"bytes,5,opt,name=mailboxRootKey" json:"mailboxRootKey,omitempty"`
- ObliviousValidationToken []byte `protobuf:"bytes,6,opt,name=obliviousValidationToken" json:"obliviousValidationToken,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) Reset() {
- *x = Armadillo_Signal_EncryptedBackupsSecrets{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[7]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Signal_EncryptedBackupsSecrets) ProtoMessage() {}
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[7]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets.ProtoReflect.Descriptor instead.
- func (*Armadillo_Signal_EncryptedBackupsSecrets) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0}
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetBackupID() uint64 {
- if x != nil && x.BackupID != nil {
- return *x.BackupID
- }
- return 0
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetServerDataID() uint64 {
- if x != nil && x.ServerDataID != nil {
- return *x.ServerDataID
- }
- return 0
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetEpoch() []*Armadillo_Signal_EncryptedBackupsSecrets_Epoch {
- if x != nil {
- return x.Epoch
- }
- return nil
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetTempOcmfClientState() []byte {
- if x != nil {
- return x.TempOcmfClientState
- }
- return nil
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetMailboxRootKey() []byte {
- if x != nil {
- return x.MailboxRootKey
- }
- return nil
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets) GetObliviousValidationToken() []byte {
- if x != nil {
- return x.ObliviousValidationToken
- }
- return nil
- }
- type Armadillo_Signal_EncryptedBackupsSecrets_Epoch struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ID *uint64 `protobuf:"varint,1,opt,name=ID" json:"ID,omitempty"`
- AnonID []byte `protobuf:"bytes,2,opt,name=anonID" json:"anonID,omitempty"`
- RootKey []byte `protobuf:"bytes,3,opt,name=rootKey" json:"rootKey,omitempty"`
- Status *Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus `protobuf:"varint,4,opt,name=status,enum=WAArmadilloApplication.Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus" json:"status,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) Reset() {
- *x = Armadillo_Signal_EncryptedBackupsSecrets_Epoch{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[8]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch) ProtoMessage() {}
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[8]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Signal_EncryptedBackupsSecrets_Epoch.ProtoReflect.Descriptor instead.
- func (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 3, 0, 0}
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetID() uint64 {
- if x != nil && x.ID != nil {
- return *x.ID
- }
- return 0
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetAnonID() []byte {
- if x != nil {
- return x.AnonID
- }
- return nil
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetRootKey() []byte {
- if x != nil {
- return x.RootKey
- }
- return nil
- }
- func (x *Armadillo_Signal_EncryptedBackupsSecrets_Epoch) GetStatus() Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus {
- if x != nil && x.Status != nil {
- return *x.Status
- }
- return Armadillo_Signal_EncryptedBackupsSecrets_Epoch_ES_OPEN
- }
- type Armadillo_ApplicationData_MessageHistoryDocumentMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Document *waCommon.SubProtocol `protobuf:"bytes,1,opt,name=document" json:"document,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) Reset() {
- *x = Armadillo_ApplicationData_MessageHistoryDocumentMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[9]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MessageHistoryDocumentMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MessageHistoryDocumentMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 0}
- }
- func (x *Armadillo_ApplicationData_MessageHistoryDocumentMessage) GetDocument() *waCommon.SubProtocol {
- if x != nil {
- return x.Document
- }
- return nil
- }
- type Armadillo_ApplicationData_AIBotResponseMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- SummonToken *string `protobuf:"bytes,1,opt,name=summonToken" json:"summonToken,omitempty"`
- MessageText *string `protobuf:"bytes,2,opt,name=messageText" json:"messageText,omitempty"`
- SerializedExtras *string `protobuf:"bytes,3,opt,name=serializedExtras" json:"serializedExtras,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_AIBotResponseMessage) Reset() {
- *x = Armadillo_ApplicationData_AIBotResponseMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_AIBotResponseMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_AIBotResponseMessage) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_AIBotResponseMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[10]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_AIBotResponseMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_AIBotResponseMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 1}
- }
- func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSummonToken() string {
- if x != nil && x.SummonToken != nil {
- return *x.SummonToken
- }
- return ""
- }
- func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetMessageText() string {
- if x != nil && x.MessageText != nil {
- return *x.MessageText
- }
- return ""
- }
- func (x *Armadillo_ApplicationData_AIBotResponseMessage) GetSerializedExtras() string {
- if x != nil && x.SerializedExtras != nil {
- return *x.SerializedExtras
- }
- return ""
- }
- type Armadillo_ApplicationData_MetadataSyncAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to ActionType:
- //
- // *Armadillo_ApplicationData_MetadataSyncAction_ChatAction
- // *Armadillo_ApplicationData_MetadataSyncAction_MessageAction
- // *Armadillo_ApplicationData_MetadataSyncAction_SpectraAction
- // *Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction
- ActionType isArmadillo_ApplicationData_MetadataSyncAction_ActionType `protobuf_oneof:"actionType"`
- ActionTimestamp *int64 `protobuf:"varint,1,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionType() isArmadillo_ApplicationData_MetadataSyncAction_ActionType {
- if x != nil {
- return x.ActionType
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) GetChatAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction {
- if x != nil {
- if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_ChatAction); ok {
- return x.ChatAction
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) GetMessageAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction {
- if x != nil {
- if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_MessageAction); ok {
- return x.MessageAction
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) GetSpectraAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction {
- if x != nil {
- if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_SpectraAction); ok {
- return x.SpectraAction
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) GetAttachmentInterventionAction() *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction {
- if x != nil {
- if x, ok := x.ActionType.(*Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction); ok {
- return x.AttachmentInterventionAction
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction) GetActionTimestamp() int64 {
- if x != nil && x.ActionTimestamp != nil {
- return *x.ActionTimestamp
- }
- return 0
- }
- type isArmadillo_ApplicationData_MetadataSyncAction_ActionType interface {
- isArmadillo_ApplicationData_MetadataSyncAction_ActionType()
- }
- type Armadillo_ApplicationData_MetadataSyncAction_ChatAction struct {
- ChatAction *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction `protobuf:"bytes,101,opt,name=chatAction,oneof"`
- }
- type Armadillo_ApplicationData_MetadataSyncAction_MessageAction struct {
- MessageAction *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction `protobuf:"bytes,102,opt,name=messageAction,oneof"`
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SpectraAction struct {
- SpectraAction *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction `protobuf:"bytes,103,opt,name=spectraAction,oneof"`
- }
- type Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction struct {
- AttachmentInterventionAction *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction `protobuf:"bytes,104,opt,name=attachmentInterventionAction,oneof"`
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SpectraAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction) isArmadillo_ApplicationData_MetadataSyncAction_ActionType() {
- }
- type Armadillo_ApplicationData_MetadataSyncNotification struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Actions []*Armadillo_ApplicationData_MetadataSyncAction `protobuf:"bytes,2,rep,name=actions" json:"actions,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncNotification) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncNotification{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncNotification) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncNotification) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncNotification) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[12]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncNotification.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncNotification) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 3}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncNotification) GetActions() []*Armadillo_ApplicationData_MetadataSyncAction {
- if x != nil {
- return x.Actions
- }
- return nil
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- MessageKey *waCommon.MessageKey `protobuf:"bytes,1,opt,name=messageKey" json:"messageKey,omitempty"`
- InterventionType *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType `protobuf:"varint,2,opt,name=interventionType,enum=WAArmadilloApplication.Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType" json:"interventionType,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) ProtoMessage() {
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[13]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 0}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) GetMessageKey() *waCommon.MessageKey {
- if x != nil {
- return x.MessageKey
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction) GetInterventionType() Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType {
- if x != nil && x.InterventionType != nil {
- return *x.InterventionType
- }
- return Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_UNKNOWN
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
- ActionType *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType `protobuf:"varint,2,opt,name=actionType,enum=WAArmadilloApplication.Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType" json:"actionType,omitempty"`
- TakedownActionID *int64 `protobuf:"varint,3,opt,name=takedownActionID" json:"takedownActionID,omitempty"`
- Config *string `protobuf:"bytes,4,opt,name=config" json:"config,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[14]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 1}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetKey() *waCommon.MessageKey {
- if x != nil {
- return x.Key
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetActionType() Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType {
- if x != nil && x.ActionType != nil {
- return *x.ActionType
- }
- return Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_TAKEDOWN
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetTakedownActionID() int64 {
- if x != nil && x.TakedownActionID != nil {
- return *x.TakedownActionID
- }
- return 0
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction) GetConfig() string {
- if x != nil && x.Config != nil {
- return *x.Config
- }
- return ""
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to Action:
- //
- // *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete
- Action isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action `protobuf_oneof:"action"`
- Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 2}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action {
- if x != nil {
- return x.Action
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetMessageDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete {
- if x != nil {
- if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete); ok {
- return x.MessageDelete
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction) GetKey() *waCommon.MessageKey {
- if x != nil {
- return x.Key
- }
- return nil
- }
- type isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action interface {
- isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action()
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete struct {
- MessageDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete `protobuf:"bytes,101,opt,name=messageDelete,oneof"`
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_Action() {
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to Action:
- //
- // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive
- // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete
- // *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead
- Action isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action `protobuf_oneof:"action"`
- ChatID *string `protobuf:"bytes,1,opt,name=chatID" json:"chatID,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetAction() isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action {
- if x != nil {
- return x.Action
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatArchive() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive {
- if x != nil {
- if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive); ok {
- return x.ChatArchive
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatDelete() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete {
- if x != nil {
- if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete); ok {
- return x.ChatDelete
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatRead() *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead {
- if x != nil {
- if x, ok := x.Action.(*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead); ok {
- return x.ChatRead
- }
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction) GetChatID() string {
- if x != nil && x.ChatID != nil {
- return *x.ChatID
- }
- return ""
- }
- type isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action interface {
- isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action()
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive struct {
- ChatArchive *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive `protobuf:"bytes,101,opt,name=chatArchive,oneof"`
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete struct {
- ChatDelete *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete `protobuf:"bytes,102,opt,name=chatDelete,oneof"`
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead struct {
- ChatRead *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead `protobuf:"bytes,103,opt,name=chatRead,oneof"`
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead) isArmadillo_ApplicationData_MetadataSyncAction_SyncChatAction_Action() {
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
- Timestamp *int64 `protobuf:"varint,2,opt,name=timestamp" json:"timestamp,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[17]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 4}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetKey() *waCommon.MessageKey {
- if x != nil {
- return x.Key
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage) GetTimestamp() int64 {
- if x != nil && x.Timestamp != nil {
- return *x.Timestamp
- }
- return 0
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- LastMessageTimestamp *int64 `protobuf:"varint,1,opt,name=lastMessageTimestamp" json:"lastMessageTimestamp,omitempty"`
- LastSystemMessageTimestamp *int64 `protobuf:"varint,2,opt,name=lastSystemMessageTimestamp" json:"lastSystemMessageTimestamp,omitempty"`
- Messages []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage `protobuf:"bytes,3,rep,name=messages" json:"messages,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[18]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 5}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastMessageTimestamp() int64 {
- if x != nil && x.LastMessageTimestamp != nil {
- return *x.LastMessageTimestamp
- }
- return 0
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetLastSystemMessageTimestamp() int64 {
- if x != nil && x.LastSystemMessageTimestamp != nil {
- return *x.LastSystemMessageTimestamp
- }
- return 0
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange) GetMessages() []*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage {
- if x != nil {
- return x.Messages
- }
- return nil
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoMessage() {
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[19]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 2, 0}
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
- Read *bool `protobuf:"varint,2,opt,name=read" json:"read,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[20]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3, 0}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
- if x != nil {
- return x.MessageRange
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead) GetRead() bool {
- if x != nil && x.Read != nil {
- return *x.Read
- }
- return false
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoMessage() {}
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[21]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3, 1}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
- if x != nil {
- return x.MessageRange
- }
- return nil
- }
- type Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- MessageRange *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange `protobuf:"bytes,1,opt,name=messageRange" json:"messageRange,omitempty"`
- Archived *bool `protobuf:"varint,2,opt,name=archived" json:"archived,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Reset() {
- *x = Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[22]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoMessage() {
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[22]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive.ProtoReflect.Descriptor instead.
- func (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 4, 2, 3, 2}
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetMessageRange() *Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange {
- if x != nil {
- return x.MessageRange
- }
- return nil
- }
- func (x *Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive) GetArchived() bool {
- if x != nil && x.Archived != nil {
- return *x.Archived
- }
- return false
- }
- type Armadillo_Content_PaymentsTransactionMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- TransactionID *uint64 `protobuf:"varint,1,opt,name=transactionID" json:"transactionID,omitempty"`
- Amount *string `protobuf:"bytes,2,opt,name=amount" json:"amount,omitempty"`
- Currency *string `protobuf:"bytes,3,opt,name=currency" json:"currency,omitempty"`
- PaymentStatus *Armadillo_Content_PaymentsTransactionMessage_PaymentStatus `protobuf:"varint,4,opt,name=paymentStatus,enum=WAArmadilloApplication.Armadillo_Content_PaymentsTransactionMessage_PaymentStatus" json:"paymentStatus,omitempty"`
- ExtendedContentMessage *waArmadilloXMA.ExtendedContentMessage `protobuf:"bytes,5,opt,name=extendedContentMessage" json:"extendedContentMessage,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) Reset() {
- *x = Armadillo_Content_PaymentsTransactionMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_PaymentsTransactionMessage) ProtoMessage() {}
- func (x *Armadillo_Content_PaymentsTransactionMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[23]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_PaymentsTransactionMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_PaymentsTransactionMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 0}
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) GetTransactionID() uint64 {
- if x != nil && x.TransactionID != nil {
- return *x.TransactionID
- }
- return 0
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) GetAmount() string {
- if x != nil && x.Amount != nil {
- return *x.Amount
- }
- return ""
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) GetCurrency() string {
- if x != nil && x.Currency != nil {
- return *x.Currency
- }
- return ""
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) GetPaymentStatus() Armadillo_Content_PaymentsTransactionMessage_PaymentStatus {
- if x != nil && x.PaymentStatus != nil {
- return *x.PaymentStatus
- }
- return Armadillo_Content_PaymentsTransactionMessage_PAYMENT_UNKNOWN
- }
- func (x *Armadillo_Content_PaymentsTransactionMessage) GetExtendedContentMessage() *waArmadilloXMA.ExtendedContentMessage {
- if x != nil {
- return x.ExtendedContentMessage
- }
- return nil
- }
- type Armadillo_Content_NetworkVerificationMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- CodeText *string `protobuf:"bytes,1,opt,name=codeText" json:"codeText,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_NetworkVerificationMessage) Reset() {
- *x = Armadillo_Content_NetworkVerificationMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[24]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_NetworkVerificationMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_NetworkVerificationMessage) ProtoMessage() {}
- func (x *Armadillo_Content_NetworkVerificationMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[24]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_NetworkVerificationMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_NetworkVerificationMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 1}
- }
- func (x *Armadillo_Content_NetworkVerificationMessage) GetCodeText() string {
- if x != nil && x.CodeText != nil {
- return *x.CodeText
- }
- return ""
- }
- type Armadillo_Content_NoteReplyMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to NoteReplyContent:
- //
- // *Armadillo_Content_NoteReplyMessage_TextContent
- // *Armadillo_Content_NoteReplyMessage_StickerContent
- // *Armadillo_Content_NoteReplyMessage_VideoContent
- NoteReplyContent isArmadillo_Content_NoteReplyMessage_NoteReplyContent `protobuf_oneof:"noteReplyContent"`
- NoteID *string `protobuf:"bytes,1,opt,name=noteID" json:"noteID,omitempty"`
- NoteText *waCommon.MessageText `protobuf:"bytes,2,opt,name=noteText" json:"noteText,omitempty"`
- NoteTimestampMS *int64 `protobuf:"varint,3,opt,name=noteTimestampMS" json:"noteTimestampMS,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_NoteReplyMessage) Reset() {
- *x = Armadillo_Content_NoteReplyMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_NoteReplyMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_NoteReplyMessage) ProtoMessage() {}
- func (x *Armadillo_Content_NoteReplyMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_NoteReplyMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_NoteReplyMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 2}
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetNoteReplyContent() isArmadillo_Content_NoteReplyMessage_NoteReplyContent {
- if x != nil {
- return x.NoteReplyContent
- }
- return nil
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetTextContent() *waCommon.MessageText {
- if x != nil {
- if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_TextContent); ok {
- return x.TextContent
- }
- }
- return nil
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetStickerContent() *waCommon.SubProtocol {
- if x != nil {
- if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_StickerContent); ok {
- return x.StickerContent
- }
- }
- return nil
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetVideoContent() *waCommon.SubProtocol {
- if x != nil {
- if x, ok := x.NoteReplyContent.(*Armadillo_Content_NoteReplyMessage_VideoContent); ok {
- return x.VideoContent
- }
- }
- return nil
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetNoteID() string {
- if x != nil && x.NoteID != nil {
- return *x.NoteID
- }
- return ""
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetNoteText() *waCommon.MessageText {
- if x != nil {
- return x.NoteText
- }
- return nil
- }
- func (x *Armadillo_Content_NoteReplyMessage) GetNoteTimestampMS() int64 {
- if x != nil && x.NoteTimestampMS != nil {
- return *x.NoteTimestampMS
- }
- return 0
- }
- type isArmadillo_Content_NoteReplyMessage_NoteReplyContent interface {
- isArmadillo_Content_NoteReplyMessage_NoteReplyContent()
- }
- type Armadillo_Content_NoteReplyMessage_TextContent struct {
- TextContent *waCommon.MessageText `protobuf:"bytes,4,opt,name=textContent,oneof"`
- }
- type Armadillo_Content_NoteReplyMessage_StickerContent struct {
- StickerContent *waCommon.SubProtocol `protobuf:"bytes,5,opt,name=stickerContent,oneof"`
- }
- type Armadillo_Content_NoteReplyMessage_VideoContent struct {
- VideoContent *waCommon.SubProtocol `protobuf:"bytes,6,opt,name=videoContent,oneof"`
- }
- func (*Armadillo_Content_NoteReplyMessage_TextContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
- }
- func (*Armadillo_Content_NoteReplyMessage_StickerContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
- }
- func (*Armadillo_Content_NoteReplyMessage_VideoContent) isArmadillo_Content_NoteReplyMessage_NoteReplyContent() {
- }
- type Armadillo_Content_BumpExistingMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_BumpExistingMessage) Reset() {
- *x = Armadillo_Content_BumpExistingMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[26]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_BumpExistingMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_BumpExistingMessage) ProtoMessage() {}
- func (x *Armadillo_Content_BumpExistingMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[26]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_BumpExistingMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_BumpExistingMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 3}
- }
- func (x *Armadillo_Content_BumpExistingMessage) GetKey() *waCommon.MessageKey {
- if x != nil {
- return x.Key
- }
- return nil
- }
- type Armadillo_Content_ImageGalleryMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Images []*waCommon.SubProtocol `protobuf:"bytes,1,rep,name=images" json:"images,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_ImageGalleryMessage) Reset() {
- *x = Armadillo_Content_ImageGalleryMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[27]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_ImageGalleryMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_ImageGalleryMessage) ProtoMessage() {}
- func (x *Armadillo_Content_ImageGalleryMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[27]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_ImageGalleryMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_ImageGalleryMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 4}
- }
- func (x *Armadillo_Content_ImageGalleryMessage) GetImages() []*waCommon.SubProtocol {
- if x != nil {
- return x.Images
- }
- return nil
- }
- type Armadillo_Content_ScreenshotAction struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- ScreenshotType *Armadillo_Content_ScreenshotAction_ScreenshotType `protobuf:"varint,1,opt,name=screenshotType,enum=WAArmadilloApplication.Armadillo_Content_ScreenshotAction_ScreenshotType" json:"screenshotType,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_ScreenshotAction) Reset() {
- *x = Armadillo_Content_ScreenshotAction{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[28]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_ScreenshotAction) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_ScreenshotAction) ProtoMessage() {}
- func (x *Armadillo_Content_ScreenshotAction) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[28]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_ScreenshotAction.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_ScreenshotAction) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 5}
- }
- func (x *Armadillo_Content_ScreenshotAction) GetScreenshotType() Armadillo_Content_ScreenshotAction_ScreenshotType {
- if x != nil && x.ScreenshotType != nil {
- return *x.ScreenshotType
- }
- return Armadillo_Content_ScreenshotAction_SCREENSHOT_IMAGE
- }
- type Armadillo_Content_ExtendedContentMessageWithSear struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- SearID *string `protobuf:"bytes,1,opt,name=searID" json:"searID,omitempty"`
- Payload []byte `protobuf:"bytes,2,opt,name=payload" json:"payload,omitempty"`
- NativeURL *string `protobuf:"bytes,3,opt,name=nativeURL" json:"nativeURL,omitempty"`
- SearAssociatedMessage *waCommon.SubProtocol `protobuf:"bytes,4,opt,name=searAssociatedMessage" json:"searAssociatedMessage,omitempty"`
- SearSentWithMessageID *string `protobuf:"bytes,5,opt,name=searSentWithMessageID" json:"searSentWithMessageID,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) Reset() {
- *x = Armadillo_Content_ExtendedContentMessageWithSear{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_ExtendedContentMessageWithSear) ProtoMessage() {}
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[29]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_ExtendedContentMessageWithSear.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_ExtendedContentMessageWithSear) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 6}
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearID() string {
- if x != nil && x.SearID != nil {
- return *x.SearID
- }
- return ""
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetPayload() []byte {
- if x != nil {
- return x.Payload
- }
- return nil
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetNativeURL() string {
- if x != nil && x.NativeURL != nil {
- return *x.NativeURL
- }
- return ""
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearAssociatedMessage() *waCommon.SubProtocol {
- if x != nil {
- return x.SearAssociatedMessage
- }
- return nil
- }
- func (x *Armadillo_Content_ExtendedContentMessageWithSear) GetSearSentWithMessageID() string {
- if x != nil && x.SearSentWithMessageID != nil {
- return *x.SearSentWithMessageID
- }
- return ""
- }
- type Armadillo_Content_RavenActionNotifMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- Key *waCommon.MessageKey `protobuf:"bytes,1,opt,name=key" json:"key,omitempty"`
- ActionTimestamp *int64 `protobuf:"varint,2,opt,name=actionTimestamp" json:"actionTimestamp,omitempty"`
- ActionType *Armadillo_Content_RavenActionNotifMessage_ActionType `protobuf:"varint,3,opt,name=actionType,enum=WAArmadilloApplication.Armadillo_Content_RavenActionNotifMessage_ActionType" json:"actionType,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_RavenActionNotifMessage) Reset() {
- *x = Armadillo_Content_RavenActionNotifMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[30]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_RavenActionNotifMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_RavenActionNotifMessage) ProtoMessage() {}
- func (x *Armadillo_Content_RavenActionNotifMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[30]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_RavenActionNotifMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_RavenActionNotifMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 7}
- }
- func (x *Armadillo_Content_RavenActionNotifMessage) GetKey() *waCommon.MessageKey {
- if x != nil {
- return x.Key
- }
- return nil
- }
- func (x *Armadillo_Content_RavenActionNotifMessage) GetActionTimestamp() int64 {
- if x != nil && x.ActionTimestamp != nil {
- return *x.ActionTimestamp
- }
- return 0
- }
- func (x *Armadillo_Content_RavenActionNotifMessage) GetActionType() Armadillo_Content_RavenActionNotifMessage_ActionType {
- if x != nil && x.ActionType != nil {
- return *x.ActionType
- }
- return Armadillo_Content_RavenActionNotifMessage_PLAYED
- }
- type Armadillo_Content_RavenMessage struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- // Types that are valid to be assigned to MediaContent:
- //
- // *Armadillo_Content_RavenMessage_ImageMessage
- // *Armadillo_Content_RavenMessage_VideoMessage
- MediaContent isArmadillo_Content_RavenMessage_MediaContent `protobuf_oneof:"mediaContent"`
- EphemeralType *Armadillo_Content_RavenMessage_EphemeralType `protobuf:"varint,1,opt,name=ephemeralType,enum=WAArmadilloApplication.Armadillo_Content_RavenMessage_EphemeralType" json:"ephemeralType,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_RavenMessage) Reset() {
- *x = Armadillo_Content_RavenMessage{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[31]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_RavenMessage) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_RavenMessage) ProtoMessage() {}
- func (x *Armadillo_Content_RavenMessage) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[31]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_RavenMessage.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_RavenMessage) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 8}
- }
- func (x *Armadillo_Content_RavenMessage) GetMediaContent() isArmadillo_Content_RavenMessage_MediaContent {
- if x != nil {
- return x.MediaContent
- }
- return nil
- }
- func (x *Armadillo_Content_RavenMessage) GetImageMessage() *waCommon.SubProtocol {
- if x != nil {
- if x, ok := x.MediaContent.(*Armadillo_Content_RavenMessage_ImageMessage); ok {
- return x.ImageMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content_RavenMessage) GetVideoMessage() *waCommon.SubProtocol {
- if x != nil {
- if x, ok := x.MediaContent.(*Armadillo_Content_RavenMessage_VideoMessage); ok {
- return x.VideoMessage
- }
- }
- return nil
- }
- func (x *Armadillo_Content_RavenMessage) GetEphemeralType() Armadillo_Content_RavenMessage_EphemeralType {
- if x != nil && x.EphemeralType != nil {
- return *x.EphemeralType
- }
- return Armadillo_Content_RavenMessage_VIEW_ONCE
- }
- type isArmadillo_Content_RavenMessage_MediaContent interface {
- isArmadillo_Content_RavenMessage_MediaContent()
- }
- type Armadillo_Content_RavenMessage_ImageMessage struct {
- ImageMessage *waCommon.SubProtocol `protobuf:"bytes,2,opt,name=imageMessage,oneof"`
- }
- type Armadillo_Content_RavenMessage_VideoMessage struct {
- VideoMessage *waCommon.SubProtocol `protobuf:"bytes,3,opt,name=videoMessage,oneof"`
- }
- func (*Armadillo_Content_RavenMessage_ImageMessage) isArmadillo_Content_RavenMessage_MediaContent() {}
- func (*Armadillo_Content_RavenMessage_VideoMessage) isArmadillo_Content_RavenMessage_MediaContent() {}
- type Armadillo_Content_CommonSticker struct {
- state protoimpl.MessageState `protogen:"open.v1"`
- StickerType *Armadillo_Content_CommonSticker_StickerType `protobuf:"varint,1,opt,name=stickerType,enum=WAArmadilloApplication.Armadillo_Content_CommonSticker_StickerType" json:"stickerType,omitempty"`
- unknownFields protoimpl.UnknownFields
- sizeCache protoimpl.SizeCache
- }
- func (x *Armadillo_Content_CommonSticker) Reset() {
- *x = Armadillo_Content_CommonSticker{}
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[32]
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- ms.StoreMessageInfo(mi)
- }
- func (x *Armadillo_Content_CommonSticker) String() string {
- return protoimpl.X.MessageStringOf(x)
- }
- func (*Armadillo_Content_CommonSticker) ProtoMessage() {}
- func (x *Armadillo_Content_CommonSticker) ProtoReflect() protoreflect.Message {
- mi := &file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[32]
- if x != nil {
- ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
- if ms.LoadMessageInfo() == nil {
- ms.StoreMessageInfo(mi)
- }
- return ms
- }
- return mi.MessageOf(x)
- }
- // Deprecated: Use Armadillo_Content_CommonSticker.ProtoReflect.Descriptor instead.
- func (*Armadillo_Content_CommonSticker) Descriptor() ([]byte, []int) {
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP(), []int{0, 5, 9}
- }
- func (x *Armadillo_Content_CommonSticker) GetStickerType() Armadillo_Content_CommonSticker_StickerType {
- if x != nil && x.StickerType != nil {
- return *x.StickerType
- }
- return Armadillo_Content_CommonSticker_SMALL_LIKE
- }
- var File_waArmadilloApplication_WAArmadilloApplication_proto protoreflect.FileDescriptor
- const file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc = "" +
- "\n" +
- "3waArmadilloApplication/WAArmadilloApplication.proto\x12\x16WAArmadilloApplication\x1a#waArmadilloXMA/WAArmadilloXMA.proto\x1a\x17waCommon/WACommon.proto\"\xbbF\n" +
- "\tArmadillo\x12C\n" +
- "\apayload\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.PayloadR\apayload\x12F\n" +
- "\bmetadata\x18\x02 \x01(\v2*.WAArmadilloApplication.Armadillo.MetadataR\bmetadata\x1a\n" +
- "\n" +
- "\bMetadata\x1a\xd8\x02\n" +
- "\aPayload\x12E\n" +
- "\acontent\x18\x01 \x01(\v2).WAArmadilloApplication.Armadillo.ContentH\x00R\acontent\x12]\n" +
- "\x0fapplicationData\x18\x02 \x01(\v21.WAArmadilloApplication.Armadillo.ApplicationDataH\x00R\x0fapplicationData\x12B\n" +
- "\x06signal\x18\x03 \x01(\v2(.WAArmadilloApplication.Armadillo.SignalH\x00R\x06signal\x12X\n" +
- "\vsubProtocol\x18\x04 \x01(\v24.WAArmadilloApplication.Armadillo.SubProtocolPayloadH\x00R\vsubProtocolB\t\n" +
- "\apayload\x1aU\n" +
- "\x12SubProtocolPayload\x12?\n" +
- "\vfutureProof\x18\x01 \x01(\x0e2\x1d.WACommon.FutureProofBehaviorR\vfutureProof\x1a\xc2\x05\n" +
- "\x06Signal\x12|\n" +
- "\x17encryptedBackupsSecrets\x18\x01 \x01(\v2@.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecretsH\x00R\x17encryptedBackupsSecrets\x1a\xaf\x04\n" +
- "\x17EncryptedBackupsSecrets\x12\x1a\n" +
- "\bbackupID\x18\x01 \x01(\x04R\bbackupID\x12\"\n" +
- "\fserverDataID\x18\x02 \x01(\x04R\fserverDataID\x12\\\n" +
- "\x05epoch\x18\x03 \x03(\v2F.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.EpochR\x05epoch\x120\n" +
- "\x13tempOcmfClientState\x18\x04 \x01(\fR\x13tempOcmfClientState\x12&\n" +
- "\x0emailboxRootKey\x18\x05 \x01(\fR\x0emailboxRootKey\x12:\n" +
- "\x18obliviousValidationToken\x18\x06 \x01(\fR\x18obliviousValidationToken\x1a\xdf\x01\n" +
- "\x05Epoch\x12\x0e\n" +
- "\x02ID\x18\x01 \x01(\x04R\x02ID\x12\x16\n" +
- "\x06anonID\x18\x02 \x01(\fR\x06anonID\x12\x18\n" +
- "\arootKey\x18\x03 \x01(\fR\arootKey\x12j\n" +
- "\x06status\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatusR\x06status\"(\n" +
- "\vEpochStatus\x12\v\n" +
- "\aES_OPEN\x10\x01\x12\f\n" +
- "\bES_CLOSE\x10\x02B\b\n" +
- "\x06signal\x1a\xf3\x1b\n" +
- "\x0fApplicationData\x12p\n" +
- "\fmetadataSync\x18\x01 \x01(\v2J.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotificationH\x00R\fmetadataSync\x12n\n" +
- "\raiBotResponse\x18\x02 \x01(\v2F.WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessageH\x00R\raiBotResponse\x12\x97\x01\n" +
- "\x1dmessageHistoryDocumentMessage\x18\x03 \x01(\v2O.WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessageH\x00R\x1dmessageHistoryDocumentMessage\x1aR\n" +
- "\x1dMessageHistoryDocumentMessage\x121\n" +
- "\bdocument\x18\x01 \x01(\v2\x15.WACommon.SubProtocolR\bdocument\x1a\x86\x01\n" +
- "\x14AIBotResponseMessage\x12 \n" +
- "\vsummonToken\x18\x01 \x01(\tR\vsummonToken\x12 \n" +
- "\vmessageText\x18\x02 \x01(\tR\vmessageText\x12*\n" +
- "\x10serializedExtras\x18\x03 \x01(\tR\x10serializedExtras\x1a\xf7\x15\n" +
- "\x12MetadataSyncAction\x12u\n" +
- "\n" +
- "chatAction\x18e \x01(\v2S.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatActionH\x00R\n" +
- "chatAction\x12~\n" +
- "\rmessageAction\x18f \x01(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageActionH\x00R\rmessageAction\x12~\n" +
- "\rspectraAction\x18g \x01(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraActionH\x00R\rspectraAction\x12\xab\x01\n" +
- "\x1cattachmentInterventionAction\x18h \x01(\v2e.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionActionH\x00R\x1cattachmentInterventionAction\x12(\n" +
- "\x0factionTimestamp\x18\x01 \x01(\x03R\x0factionTimestamp\x1a\xb6\x02\n" +
- " SyncAttachmentInterventionAction\x124\n" +
- "\n" +
- "messageKey\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\n" +
- "messageKey\x12\xa2\x01\n" +
- "\x10interventionType\x18\x02 \x01(\x0e2v.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.InterventionTypeR\x10interventionType\"7\n" +
- "\x10InterventionType\x12\v\n" +
- "\aUNKNOWN\x10\x00\x12\b\n" +
- "\x04NUDE\x10\x01\x12\f\n" +
- "\bNOT_NUDE\x10\x02\x1a\xba\x02\n" +
- "\x11SyncSpectraAction\x12&\n" +
- "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x88\x01\n" +
- "\n" +
- "actionType\x18\x02 \x01(\x0e2h.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.SpectraActionTypeR\n" +
- "actionType\x12*\n" +
- "\x10takedownActionID\x18\x03 \x01(\x03R\x10takedownActionID\x12\x16\n" +
- "\x06config\x18\x04 \x01(\tR\x06config\".\n" +
- "\x11SpectraActionType\x12\f\n" +
- "\bTAKEDOWN\x10\x00\x12\v\n" +
- "\aRESTORE\x10\x01\x1a\xf1\x01\n" +
- "\x11SyncMessageAction\x12\x92\x01\n" +
- "\rmessageDelete\x18e \x01(\v2j.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDeleteH\x00R\rmessageDelete\x12&\n" +
- "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1a\x15\n" +
- "\x13ActionMessageDeleteB\b\n" +
- "\x06action\x1a\xbb\a\n" +
- "\x0eSyncChatAction\x12\x89\x01\n" +
- "\vchatArchive\x18e \x01(\v2e.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchiveH\x00R\vchatArchive\x12\x86\x01\n" +
- "\n" +
- "chatDelete\x18f \x01(\v2d.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDeleteH\x00R\n" +
- "chatDelete\x12\x80\x01\n" +
- "\bchatRead\x18g \x01(\v2b.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatReadH\x00R\bchatRead\x12\x16\n" +
- "\x06chatID\x18\x01 \x01(\tR\x06chatID\x1a\xa5\x01\n" +
- "\x0eActionChatRead\x12\x7f\n" +
- "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x12\n" +
- "\x04read\x18\x02 \x01(\bR\x04read\x1a\x93\x01\n" +
- "\x10ActionChatDelete\x12\x7f\n" +
- "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x1a\xb0\x01\n" +
- "\x11ActionChatArchive\x12\x7f\n" +
- "\fmessageRange\x18\x01 \x01(\v2[.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRangeR\fmessageRange\x12\x1a\n" +
- "\barchived\x18\x02 \x01(\bR\barchivedB\b\n" +
- "\x06action\x1aY\n" +
- "\x11SyncActionMessage\x12&\n" +
- "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12\x1c\n" +
- "\ttimestamp\x18\x02 \x01(\x03R\ttimestamp\x1a\x80\x02\n" +
- "\x16SyncActionMessageRange\x122\n" +
- "\x14lastMessageTimestamp\x18\x01 \x01(\x03R\x14lastMessageTimestamp\x12>\n" +
- "\x1alastSystemMessageTimestamp\x18\x02 \x01(\x03R\x1alastSystemMessageTimestamp\x12r\n" +
- "\bmessages\x18\x03 \x03(\v2V.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageR\bmessagesB\f\n" +
- "\n" +
- "actionType\x1az\n" +
- "\x18MetadataSyncNotification\x12^\n" +
- "\aactions\x18\x02 \x03(\v2D.WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncActionR\aactionsB\x11\n" +
- "\x0fapplicationData\x1a\xa7 \n" +
- "\aContent\x12_\n" +
- "\rcommonSticker\x18\x01 \x01(\v27.WAArmadilloApplication.Armadillo.Content.CommonStickerH\x00R\rcommonSticker\x12h\n" +
- "\x10screenshotAction\x18\x03 \x01(\v2:.WAArmadilloApplication.Armadillo.Content.ScreenshotActionH\x00R\x10screenshotAction\x12`\n" +
- "\x16extendedContentMessage\x18\x04 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageH\x00R\x16extendedContentMessage\x12\\\n" +
- "\fravenMessage\x18\x05 \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\fravenMessage\x12}\n" +
- "\x17ravenActionNotifMessage\x18\x06 \x01(\v2A.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessageH\x00R\x17ravenActionNotifMessage\x12\x92\x01\n" +
- "\x1eextendedMessageContentWithSear\x18\a \x01(\v2H.WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSearH\x00R\x1eextendedMessageContentWithSear\x12q\n" +
- "\x13imageGalleryMessage\x18\b \x01(\v2=.WAArmadilloApplication.Armadillo.Content.ImageGalleryMessageH\x00R\x13imageGalleryMessage\x12\x86\x01\n" +
- "\x1apaymentsTransactionMessage\x18\n" +
- " \x01(\v2D.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessageH\x00R\x1apaymentsTransactionMessage\x12q\n" +
- "\x13bumpExistingMessage\x18\v \x01(\v2=.WAArmadilloApplication.Armadillo.Content.BumpExistingMessageH\x00R\x13bumpExistingMessage\x12h\n" +
- "\x10noteReplyMessage\x18\r \x01(\v2:.WAArmadilloApplication.Armadillo.Content.NoteReplyMessageH\x00R\x10noteReplyMessage\x12d\n" +
- "\x10ravenMessageMsgr\x18\x0e \x01(\v26.WAArmadilloApplication.Armadillo.Content.RavenMessageH\x00R\x10ravenMessageMsgr\x12\x86\x01\n" +
- "\x1anetworkVerificationMessage\x18\x0f \x01(\v2D.WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessageH\x00R\x1anetworkVerificationMessage\x1a\xba\a\n" +
- "\x1aPaymentsTransactionMessage\x12$\n" +
- "\rtransactionID\x18\x01 \x01(\x04R\rtransactionID\x12\x16\n" +
- "\x06amount\x18\x02 \x01(\tR\x06amount\x12\x1a\n" +
- "\bcurrency\x18\x03 \x01(\tR\bcurrency\x12x\n" +
- "\rpaymentStatus\x18\x04 \x01(\x0e2R.WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatusR\rpaymentStatus\x12^\n" +
- "\x16extendedContentMessage\x18\x05 \x01(\v2&.WAArmadilloXMA.ExtendedContentMessageR\x16extendedContentMessage\"\xe7\x04\n" +
- "\rPaymentStatus\x12\x13\n" +
- "\x0fPAYMENT_UNKNOWN\x10\x00\x12\x12\n" +
- "\x0eREQUEST_INITED\x10\x04\x12\x14\n" +
- "\x10REQUEST_DECLINED\x10\x05\x12\x1b\n" +
- "\x17REQUEST_TRANSFER_INITED\x10\x06\x12\x1e\n" +
- "\x1aREQUEST_TRANSFER_COMPLETED\x10\a\x12\x1b\n" +
- "\x17REQUEST_TRANSFER_FAILED\x10\b\x12\x14\n" +
- "\x10REQUEST_CANCELED\x10\t\x12\x13\n" +
- "\x0fREQUEST_EXPIRED\x10\n" +
- "\x12\x13\n" +
- "\x0fTRANSFER_INITED\x10\v\x12\x14\n" +
- "\x10TRANSFER_PENDING\x10\f\x12+\n" +
- "'TRANSFER_PENDING_RECIPIENT_VERIFICATION\x10\r\x12\x15\n" +
- "\x11TRANSFER_CANCELED\x10\x0e\x12\x16\n" +
- "\x12TRANSFER_COMPLETED\x10\x0f\x12;\n" +
- "7TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_CANCELED\x10\x10\x128\n" +
- "4TRANSFER_NO_RECEIVER_CREDENTIAL_NO_RTS_PENDING_OTHER\x10\x11\x12\x15\n" +
- "\x11TRANSFER_REFUNDED\x10\x12\x12\x1b\n" +
- "\x17TRANSFER_PARTIAL_REFUND\x10\x13\x12\x19\n" +
- "\x15TRANSFER_CHARGED_BACK\x10\x14\x12\x14\n" +
- "\x10TRANSFER_EXPIRED\x10\x15\x12\x15\n" +
- "\x11TRANSFER_DECLINED\x10\x16\x12\x18\n" +
- "\x14TRANSFER_UNAVAILABLE\x10\x17\x1a8\n" +
- "\x1aNetworkVerificationMessage\x12\x1a\n" +
- "\bcodeText\x18\x01 \x01(\tR\bcodeText\x1a\xd4\x02\n" +
- "\x10NoteReplyMessage\x129\n" +
- "\vtextContent\x18\x04 \x01(\v2\x15.WACommon.MessageTextH\x00R\vtextContent\x12?\n" +
- "\x0estickerContent\x18\x05 \x01(\v2\x15.WACommon.SubProtocolH\x00R\x0estickerContent\x12;\n" +
- "\fvideoContent\x18\x06 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoContent\x12\x16\n" +
- "\x06noteID\x18\x01 \x01(\tR\x06noteID\x121\n" +
- "\bnoteText\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\bnoteText\x12(\n" +
- "\x0fnoteTimestampMS\x18\x03 \x01(\x03R\x0fnoteTimestampMSB\x12\n" +
- "\x10noteReplyContent\x1a=\n" +
- "\x13BumpExistingMessage\x12&\n" +
- "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x1aD\n" +
- "\x13ImageGalleryMessage\x12-\n" +
- "\x06images\x18\x01 \x03(\v2\x15.WACommon.SubProtocolR\x06images\x1a\xc3\x01\n" +
- "\x10ScreenshotAction\x12q\n" +
- "\x0escreenshotType\x18\x01 \x01(\x0e2I.WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotTypeR\x0escreenshotType\"<\n" +
- "\x0eScreenshotType\x12\x14\n" +
- "\x10SCREENSHOT_IMAGE\x10\x01\x12\x14\n" +
- "\x10SCREEN_RECORDING\x10\x02\x1a\xf3\x01\n" +
- "\x1eExtendedContentMessageWithSear\x12\x16\n" +
- "\x06searID\x18\x01 \x01(\tR\x06searID\x12\x18\n" +
- "\apayload\x18\x02 \x01(\fR\apayload\x12\x1c\n" +
- "\tnativeURL\x18\x03 \x01(\tR\tnativeURL\x12K\n" +
- "\x15searAssociatedMessage\x18\x04 \x01(\v2\x15.WACommon.SubProtocolR\x15searAssociatedMessage\x124\n" +
- "\x15searSentWithMessageID\x18\x05 \x01(\tR\x15searSentWithMessageID\x1a\x96\x02\n" +
- "\x17RavenActionNotifMessage\x12&\n" +
- "\x03key\x18\x01 \x01(\v2\x14.WACommon.MessageKeyR\x03key\x12(\n" +
- "\x0factionTimestamp\x18\x02 \x01(\x03R\x0factionTimestamp\x12l\n" +
- "\n" +
- "actionType\x18\x03 \x01(\x0e2L.WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionTypeR\n" +
- "actionType\";\n" +
- "\n" +
- "ActionType\x12\n" +
- "\n" +
- "\x06PLAYED\x10\x00\x12\x0e\n" +
- "\n" +
- "SCREENSHOT\x10\x01\x12\x11\n" +
- "\rFORCE_DISABLE\x10\x02\x1a\xc8\x02\n" +
- "\fRavenMessage\x12;\n" +
- "\fimageMessage\x18\x02 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fimageMessage\x12;\n" +
- "\fvideoMessage\x18\x03 \x01(\v2\x15.WACommon.SubProtocolH\x00R\fvideoMessage\x12j\n" +
- "\rephemeralType\x18\x01 \x01(\x0e2D.WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralTypeR\rephemeralType\"B\n" +
- "\rEphemeralType\x12\r\n" +
- "\tVIEW_ONCE\x10\x00\x12\x10\n" +
- "\fALLOW_REPLAY\x10\x01\x12\x10\n" +
- "\fKEEP_IN_CHAT\x10\x02B\x0e\n" +
- "\fmediaContent\x1a\xb6\x01\n" +
- "\rCommonSticker\x12e\n" +
- "\vstickerType\x18\x01 \x01(\x0e2C.WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerTypeR\vstickerType\">\n" +
- "\vStickerType\x12\x0e\n" +
- "\n" +
- "SMALL_LIKE\x10\x01\x12\x0f\n" +
- "\vMEDIUM_LIKE\x10\x02\x12\x0e\n" +
- "\n" +
- "LARGE_LIKE\x10\x03B\t\n" +
- "\acontentB2Z0go.mau.fi/whatsmeow/proto/waArmadilloApplication"
- var (
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce sync.Once
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData []byte
- )
- func file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescGZIP() []byte {
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescOnce.Do(func() {
- file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)))
- })
- return file_waArmadilloApplication_WAArmadilloApplication_proto_rawDescData
- }
- var file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes = make([]protoimpl.EnumInfo, 8)
- var file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes = make([]protoimpl.MessageInfo, 33)
- var file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = []any{
- (Armadillo_Signal_EncryptedBackupsSecrets_Epoch_EpochStatus)(0), // 0: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
- (Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction_InterventionType)(0), // 1: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.InterventionType
- (Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction_SpectraActionType)(0), // 2: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.SpectraActionType
- (Armadillo_Content_PaymentsTransactionMessage_PaymentStatus)(0), // 3: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
- (Armadillo_Content_ScreenshotAction_ScreenshotType)(0), // 4: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
- (Armadillo_Content_RavenActionNotifMessage_ActionType)(0), // 5: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
- (Armadillo_Content_RavenMessage_EphemeralType)(0), // 6: WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
- (Armadillo_Content_CommonSticker_StickerType)(0), // 7: WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
- (*Armadillo)(nil), // 8: WAArmadilloApplication.Armadillo
- (*Armadillo_Metadata)(nil), // 9: WAArmadilloApplication.Armadillo.Metadata
- (*Armadillo_Payload)(nil), // 10: WAArmadilloApplication.Armadillo.Payload
- (*Armadillo_SubProtocolPayload)(nil), // 11: WAArmadilloApplication.Armadillo.SubProtocolPayload
- (*Armadillo_Signal)(nil), // 12: WAArmadilloApplication.Armadillo.Signal
- (*Armadillo_ApplicationData)(nil), // 13: WAArmadilloApplication.Armadillo.ApplicationData
- (*Armadillo_Content)(nil), // 14: WAArmadilloApplication.Armadillo.Content
- (*Armadillo_Signal_EncryptedBackupsSecrets)(nil), // 15: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
- (*Armadillo_Signal_EncryptedBackupsSecrets_Epoch)(nil), // 16: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
- (*Armadillo_ApplicationData_MessageHistoryDocumentMessage)(nil), // 17: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
- (*Armadillo_ApplicationData_AIBotResponseMessage)(nil), // 18: WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
- (*Armadillo_ApplicationData_MetadataSyncAction)(nil), // 19: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
- (*Armadillo_ApplicationData_MetadataSyncNotification)(nil), // 20: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncAttachmentInterventionAction)(nil), // 21: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncSpectraAction)(nil), // 22: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction)(nil), // 23: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction)(nil), // 24: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessage)(nil), // 25: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncActionMessageRange)(nil), // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_ActionMessageDelete)(nil), // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatRead)(nil), // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatDelete)(nil), // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ActionChatArchive)(nil), // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
- (*Armadillo_Content_PaymentsTransactionMessage)(nil), // 31: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
- (*Armadillo_Content_NetworkVerificationMessage)(nil), // 32: WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
- (*Armadillo_Content_NoteReplyMessage)(nil), // 33: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
- (*Armadillo_Content_BumpExistingMessage)(nil), // 34: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
- (*Armadillo_Content_ImageGalleryMessage)(nil), // 35: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
- (*Armadillo_Content_ScreenshotAction)(nil), // 36: WAArmadilloApplication.Armadillo.Content.ScreenshotAction
- (*Armadillo_Content_ExtendedContentMessageWithSear)(nil), // 37: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
- (*Armadillo_Content_RavenActionNotifMessage)(nil), // 38: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
- (*Armadillo_Content_RavenMessage)(nil), // 39: WAArmadilloApplication.Armadillo.Content.RavenMessage
- (*Armadillo_Content_CommonSticker)(nil), // 40: WAArmadilloApplication.Armadillo.Content.CommonSticker
- (waCommon.FutureProofBehavior)(0), // 41: WACommon.FutureProofBehavior
- (*waArmadilloXMA.ExtendedContentMessage)(nil), // 42: WAArmadilloXMA.ExtendedContentMessage
- (*waCommon.SubProtocol)(nil), // 43: WACommon.SubProtocol
- (*waCommon.MessageKey)(nil), // 44: WACommon.MessageKey
- (*waCommon.MessageText)(nil), // 45: WACommon.MessageText
- }
- var file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = []int32{
- 10, // 0: WAArmadilloApplication.Armadillo.payload:type_name -> WAArmadilloApplication.Armadillo.Payload
- 9, // 1: WAArmadilloApplication.Armadillo.metadata:type_name -> WAArmadilloApplication.Armadillo.Metadata
- 14, // 2: WAArmadilloApplication.Armadillo.Payload.content:type_name -> WAArmadilloApplication.Armadillo.Content
- 13, // 3: WAArmadilloApplication.Armadillo.Payload.applicationData:type_name -> WAArmadilloApplication.Armadillo.ApplicationData
- 12, // 4: WAArmadilloApplication.Armadillo.Payload.signal:type_name -> WAArmadilloApplication.Armadillo.Signal
- 11, // 5: WAArmadilloApplication.Armadillo.Payload.subProtocol:type_name -> WAArmadilloApplication.Armadillo.SubProtocolPayload
- 41, // 6: WAArmadilloApplication.Armadillo.SubProtocolPayload.futureProof:type_name -> WACommon.FutureProofBehavior
- 15, // 7: WAArmadilloApplication.Armadillo.Signal.encryptedBackupsSecrets:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets
- 20, // 8: WAArmadilloApplication.Armadillo.ApplicationData.metadataSync:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification
- 18, // 9: WAArmadilloApplication.Armadillo.ApplicationData.aiBotResponse:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.AIBotResponseMessage
- 17, // 10: WAArmadilloApplication.Armadillo.ApplicationData.messageHistoryDocumentMessage:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage
- 40, // 11: WAArmadilloApplication.Armadillo.Content.commonSticker:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker
- 36, // 12: WAArmadilloApplication.Armadillo.Content.screenshotAction:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction
- 42, // 13: WAArmadilloApplication.Armadillo.Content.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
- 39, // 14: WAArmadilloApplication.Armadillo.Content.ravenMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
- 38, // 15: WAArmadilloApplication.Armadillo.Content.ravenActionNotifMessage:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage
- 37, // 16: WAArmadilloApplication.Armadillo.Content.extendedMessageContentWithSear:type_name -> WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear
- 35, // 17: WAArmadilloApplication.Armadillo.Content.imageGalleryMessage:type_name -> WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage
- 31, // 18: WAArmadilloApplication.Armadillo.Content.paymentsTransactionMessage:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage
- 34, // 19: WAArmadilloApplication.Armadillo.Content.bumpExistingMessage:type_name -> WAArmadilloApplication.Armadillo.Content.BumpExistingMessage
- 33, // 20: WAArmadilloApplication.Armadillo.Content.noteReplyMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NoteReplyMessage
- 39, // 21: WAArmadilloApplication.Armadillo.Content.ravenMessageMsgr:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage
- 32, // 22: WAArmadilloApplication.Armadillo.Content.networkVerificationMessage:type_name -> WAArmadilloApplication.Armadillo.Content.NetworkVerificationMessage
- 16, // 23: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.epoch:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch
- 0, // 24: WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.status:type_name -> WAArmadilloApplication.Armadillo.Signal.EncryptedBackupsSecrets.Epoch.EpochStatus
- 43, // 25: WAArmadilloApplication.Armadillo.ApplicationData.MessageHistoryDocumentMessage.document:type_name -> WACommon.SubProtocol
- 24, // 26: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.chatAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction
- 23, // 27: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.messageAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction
- 22, // 28: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.spectraAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction
- 21, // 29: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.attachmentInterventionAction:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction
- 19, // 30: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncNotification.actions:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction
- 44, // 31: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.messageKey:type_name -> WACommon.MessageKey
- 1, // 32: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.interventionType:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncAttachmentInterventionAction.InterventionType
- 44, // 33: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.key:type_name -> WACommon.MessageKey
- 2, // 34: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.actionType:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncSpectraAction.SpectraActionType
- 27, // 35: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.messageDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.ActionMessageDelete
- 44, // 36: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncMessageAction.key:type_name -> WACommon.MessageKey
- 30, // 37: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatArchive:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive
- 29, // 38: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatDelete:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete
- 28, // 39: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.chatRead:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead
- 44, // 40: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage.key:type_name -> WACommon.MessageKey
- 25, // 41: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange.messages:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessage
- 26, // 42: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatRead.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
- 26, // 43: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatDelete.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
- 26, // 44: WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncChatAction.ActionChatArchive.messageRange:type_name -> WAArmadilloApplication.Armadillo.ApplicationData.MetadataSyncAction.SyncActionMessageRange
- 3, // 45: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.paymentStatus:type_name -> WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.PaymentStatus
- 42, // 46: WAArmadilloApplication.Armadillo.Content.PaymentsTransactionMessage.extendedContentMessage:type_name -> WAArmadilloXMA.ExtendedContentMessage
- 45, // 47: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.textContent:type_name -> WACommon.MessageText
- 43, // 48: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.stickerContent:type_name -> WACommon.SubProtocol
- 43, // 49: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.videoContent:type_name -> WACommon.SubProtocol
- 45, // 50: WAArmadilloApplication.Armadillo.Content.NoteReplyMessage.noteText:type_name -> WACommon.MessageText
- 44, // 51: WAArmadilloApplication.Armadillo.Content.BumpExistingMessage.key:type_name -> WACommon.MessageKey
- 43, // 52: WAArmadilloApplication.Armadillo.Content.ImageGalleryMessage.images:type_name -> WACommon.SubProtocol
- 4, // 53: WAArmadilloApplication.Armadillo.Content.ScreenshotAction.screenshotType:type_name -> WAArmadilloApplication.Armadillo.Content.ScreenshotAction.ScreenshotType
- 43, // 54: WAArmadilloApplication.Armadillo.Content.ExtendedContentMessageWithSear.searAssociatedMessage:type_name -> WACommon.SubProtocol
- 44, // 55: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.key:type_name -> WACommon.MessageKey
- 5, // 56: WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.actionType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenActionNotifMessage.ActionType
- 43, // 57: WAArmadilloApplication.Armadillo.Content.RavenMessage.imageMessage:type_name -> WACommon.SubProtocol
- 43, // 58: WAArmadilloApplication.Armadillo.Content.RavenMessage.videoMessage:type_name -> WACommon.SubProtocol
- 6, // 59: WAArmadilloApplication.Armadillo.Content.RavenMessage.ephemeralType:type_name -> WAArmadilloApplication.Armadillo.Content.RavenMessage.EphemeralType
- 7, // 60: WAArmadilloApplication.Armadillo.Content.CommonSticker.stickerType:type_name -> WAArmadilloApplication.Armadillo.Content.CommonSticker.StickerType
- 61, // [61:61] is the sub-list for method output_type
- 61, // [61:61] is the sub-list for method input_type
- 61, // [61:61] is the sub-list for extension type_name
- 61, // [61:61] is the sub-list for extension extendee
- 0, // [0:61] is the sub-list for field type_name
- }
- func init() { file_waArmadilloApplication_WAArmadilloApplication_proto_init() }
- func file_waArmadilloApplication_WAArmadilloApplication_proto_init() {
- if File_waArmadilloApplication_WAArmadilloApplication_proto != nil {
- return
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[2].OneofWrappers = []any{
- (*Armadillo_Payload_Content)(nil),
- (*Armadillo_Payload_ApplicationData)(nil),
- (*Armadillo_Payload_Signal)(nil),
- (*Armadillo_Payload_SubProtocol)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[4].OneofWrappers = []any{
- (*Armadillo_Signal_EncryptedBackupsSecrets_)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[5].OneofWrappers = []any{
- (*Armadillo_ApplicationData_MetadataSync)(nil),
- (*Armadillo_ApplicationData_AiBotResponse)(nil),
- (*Armadillo_ApplicationData_MessageHistoryDocumentMessage_)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[6].OneofWrappers = []any{
- (*Armadillo_Content_CommonSticker_)(nil),
- (*Armadillo_Content_ScreenshotAction_)(nil),
- (*Armadillo_Content_ExtendedContentMessage)(nil),
- (*Armadillo_Content_RavenMessage_)(nil),
- (*Armadillo_Content_RavenActionNotifMessage_)(nil),
- (*Armadillo_Content_ExtendedMessageContentWithSear)(nil),
- (*Armadillo_Content_ImageGalleryMessage_)(nil),
- (*Armadillo_Content_PaymentsTransactionMessage_)(nil),
- (*Armadillo_Content_BumpExistingMessage_)(nil),
- (*Armadillo_Content_NoteReplyMessage_)(nil),
- (*Armadillo_Content_RavenMessageMsgr)(nil),
- (*Armadillo_Content_NetworkVerificationMessage_)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[11].OneofWrappers = []any{
- (*Armadillo_ApplicationData_MetadataSyncAction_ChatAction)(nil),
- (*Armadillo_ApplicationData_MetadataSyncAction_MessageAction)(nil),
- (*Armadillo_ApplicationData_MetadataSyncAction_SpectraAction)(nil),
- (*Armadillo_ApplicationData_MetadataSyncAction_AttachmentInterventionAction)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[15].OneofWrappers = []any{
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncMessageAction_MessageDelete)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[16].OneofWrappers = []any{
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatArchive)(nil),
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatDelete)(nil),
- (*Armadillo_ApplicationData_MetadataSyncAction_SyncChatAction_ChatRead)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[25].OneofWrappers = []any{
- (*Armadillo_Content_NoteReplyMessage_TextContent)(nil),
- (*Armadillo_Content_NoteReplyMessage_StickerContent)(nil),
- (*Armadillo_Content_NoteReplyMessage_VideoContent)(nil),
- }
- file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes[31].OneofWrappers = []any{
- (*Armadillo_Content_RavenMessage_ImageMessage)(nil),
- (*Armadillo_Content_RavenMessage_VideoMessage)(nil),
- }
- type x struct{}
- out := protoimpl.TypeBuilder{
- File: protoimpl.DescBuilder{
- GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
- RawDescriptor: unsafe.Slice(unsafe.StringData(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc), len(file_waArmadilloApplication_WAArmadilloApplication_proto_rawDesc)),
- NumEnums: 8,
- NumMessages: 33,
- NumExtensions: 0,
- NumServices: 0,
- },
- GoTypes: file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes,
- DependencyIndexes: file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs,
- EnumInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_enumTypes,
- MessageInfos: file_waArmadilloApplication_WAArmadilloApplication_proto_msgTypes,
- }.Build()
- File_waArmadilloApplication_WAArmadilloApplication_proto = out.File
- file_waArmadilloApplication_WAArmadilloApplication_proto_goTypes = nil
- file_waArmadilloApplication_WAArmadilloApplication_proto_depIdxs = nil
- }
|