WAMediaTransport.pb.go 76 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148
  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // versions:
  3. // protoc-gen-go v1.36.10
  4. // protoc v3.21.12
  5. // source: waMediaTransport/WAMediaTransport.proto
  6. package waMediaTransport
  7. import (
  8. reflect "reflect"
  9. sync "sync"
  10. unsafe "unsafe"
  11. protoreflect "google.golang.org/protobuf/reflect/protoreflect"
  12. protoimpl "google.golang.org/protobuf/runtime/protoimpl"
  13. waCommon "git.bobomao.top/joey/testwh/proto/waCommon"
  14. )
  15. const (
  16. // Verify that this generated code is sufficiently up-to-date.
  17. _ = protoimpl.EnforceVersion(20 - protoimpl.MinVersion)
  18. // Verify that runtime/protoimpl is sufficiently up-to-date.
  19. _ = protoimpl.EnforceVersion(protoimpl.MaxVersion - 20)
  20. )
  21. type ImageTransport_Ancillary_HdType int32
  22. const (
  23. ImageTransport_Ancillary_NONE ImageTransport_Ancillary_HdType = 0
  24. ImageTransport_Ancillary_LQ_4K ImageTransport_Ancillary_HdType = 1
  25. ImageTransport_Ancillary_HQ_4K ImageTransport_Ancillary_HdType = 2
  26. )
  27. // Enum value maps for ImageTransport_Ancillary_HdType.
  28. var (
  29. ImageTransport_Ancillary_HdType_name = map[int32]string{
  30. 0: "NONE",
  31. 1: "LQ_4K",
  32. 2: "HQ_4K",
  33. }
  34. ImageTransport_Ancillary_HdType_value = map[string]int32{
  35. "NONE": 0,
  36. "LQ_4K": 1,
  37. "HQ_4K": 2,
  38. }
  39. )
  40. func (x ImageTransport_Ancillary_HdType) Enum() *ImageTransport_Ancillary_HdType {
  41. p := new(ImageTransport_Ancillary_HdType)
  42. *p = x
  43. return p
  44. }
  45. func (x ImageTransport_Ancillary_HdType) String() string {
  46. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  47. }
  48. func (ImageTransport_Ancillary_HdType) Descriptor() protoreflect.EnumDescriptor {
  49. return file_waMediaTransport_WAMediaTransport_proto_enumTypes[0].Descriptor()
  50. }
  51. func (ImageTransport_Ancillary_HdType) Type() protoreflect.EnumType {
  52. return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[0]
  53. }
  54. func (x ImageTransport_Ancillary_HdType) Number() protoreflect.EnumNumber {
  55. return protoreflect.EnumNumber(x)
  56. }
  57. // Deprecated: Do not use.
  58. func (x *ImageTransport_Ancillary_HdType) UnmarshalJSON(b []byte) error {
  59. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  60. if err != nil {
  61. return err
  62. }
  63. *x = ImageTransport_Ancillary_HdType(num)
  64. return nil
  65. }
  66. // Deprecated: Use ImageTransport_Ancillary_HdType.Descriptor instead.
  67. func (ImageTransport_Ancillary_HdType) EnumDescriptor() ([]byte, []int) {
  68. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 0, 0}
  69. }
  70. type VideoTransport_Ancillary_Attribution int32
  71. const (
  72. VideoTransport_Ancillary_NONE VideoTransport_Ancillary_Attribution = 0
  73. VideoTransport_Ancillary_GIPHY VideoTransport_Ancillary_Attribution = 1
  74. VideoTransport_Ancillary_TENOR VideoTransport_Ancillary_Attribution = 2
  75. )
  76. // Enum value maps for VideoTransport_Ancillary_Attribution.
  77. var (
  78. VideoTransport_Ancillary_Attribution_name = map[int32]string{
  79. 0: "NONE",
  80. 1: "GIPHY",
  81. 2: "TENOR",
  82. }
  83. VideoTransport_Ancillary_Attribution_value = map[string]int32{
  84. "NONE": 0,
  85. "GIPHY": 1,
  86. "TENOR": 2,
  87. }
  88. )
  89. func (x VideoTransport_Ancillary_Attribution) Enum() *VideoTransport_Ancillary_Attribution {
  90. p := new(VideoTransport_Ancillary_Attribution)
  91. *p = x
  92. return p
  93. }
  94. func (x VideoTransport_Ancillary_Attribution) String() string {
  95. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  96. }
  97. func (VideoTransport_Ancillary_Attribution) Descriptor() protoreflect.EnumDescriptor {
  98. return file_waMediaTransport_WAMediaTransport_proto_enumTypes[1].Descriptor()
  99. }
  100. func (VideoTransport_Ancillary_Attribution) Type() protoreflect.EnumType {
  101. return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[1]
  102. }
  103. func (x VideoTransport_Ancillary_Attribution) Number() protoreflect.EnumNumber {
  104. return protoreflect.EnumNumber(x)
  105. }
  106. // Deprecated: Do not use.
  107. func (x *VideoTransport_Ancillary_Attribution) UnmarshalJSON(b []byte) error {
  108. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  109. if err != nil {
  110. return err
  111. }
  112. *x = VideoTransport_Ancillary_Attribution(num)
  113. return nil
  114. }
  115. // Deprecated: Use VideoTransport_Ancillary_Attribution.Descriptor instead.
  116. func (VideoTransport_Ancillary_Attribution) EnumDescriptor() ([]byte, []int) {
  117. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 0, 0}
  118. }
  119. type AudioTransport_Ancillary_AvatarAudio_AnimationsType int32
  120. const (
  121. AudioTransport_Ancillary_AvatarAudio_TALKING_A AudioTransport_Ancillary_AvatarAudio_AnimationsType = 0
  122. AudioTransport_Ancillary_AvatarAudio_IDLE_A AudioTransport_Ancillary_AvatarAudio_AnimationsType = 1
  123. AudioTransport_Ancillary_AvatarAudio_TALKING_B AudioTransport_Ancillary_AvatarAudio_AnimationsType = 2
  124. AudioTransport_Ancillary_AvatarAudio_IDLE_B AudioTransport_Ancillary_AvatarAudio_AnimationsType = 3
  125. AudioTransport_Ancillary_AvatarAudio_BACKGROUND AudioTransport_Ancillary_AvatarAudio_AnimationsType = 4
  126. )
  127. // Enum value maps for AudioTransport_Ancillary_AvatarAudio_AnimationsType.
  128. var (
  129. AudioTransport_Ancillary_AvatarAudio_AnimationsType_name = map[int32]string{
  130. 0: "TALKING_A",
  131. 1: "IDLE_A",
  132. 2: "TALKING_B",
  133. 3: "IDLE_B",
  134. 4: "BACKGROUND",
  135. }
  136. AudioTransport_Ancillary_AvatarAudio_AnimationsType_value = map[string]int32{
  137. "TALKING_A": 0,
  138. "IDLE_A": 1,
  139. "TALKING_B": 2,
  140. "IDLE_B": 3,
  141. "BACKGROUND": 4,
  142. }
  143. )
  144. func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) Enum() *AudioTransport_Ancillary_AvatarAudio_AnimationsType {
  145. p := new(AudioTransport_Ancillary_AvatarAudio_AnimationsType)
  146. *p = x
  147. return p
  148. }
  149. func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) String() string {
  150. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  151. }
  152. func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) Descriptor() protoreflect.EnumDescriptor {
  153. return file_waMediaTransport_WAMediaTransport_proto_enumTypes[2].Descriptor()
  154. }
  155. func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) Type() protoreflect.EnumType {
  156. return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[2]
  157. }
  158. func (x AudioTransport_Ancillary_AvatarAudio_AnimationsType) Number() protoreflect.EnumNumber {
  159. return protoreflect.EnumNumber(x)
  160. }
  161. // Deprecated: Do not use.
  162. func (x *AudioTransport_Ancillary_AvatarAudio_AnimationsType) UnmarshalJSON(b []byte) error {
  163. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  164. if err != nil {
  165. return err
  166. }
  167. *x = AudioTransport_Ancillary_AvatarAudio_AnimationsType(num)
  168. return nil
  169. }
  170. // Deprecated: Use AudioTransport_Ancillary_AvatarAudio_AnimationsType.Descriptor instead.
  171. func (AudioTransport_Ancillary_AvatarAudio_AnimationsType) EnumDescriptor() ([]byte, []int) {
  172. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0, 0}
  173. }
  174. type AudioTransport_Integral_AudioFormat int32
  175. const (
  176. AudioTransport_Integral_UNKNOWN AudioTransport_Integral_AudioFormat = 0
  177. AudioTransport_Integral_OPUS AudioTransport_Integral_AudioFormat = 1
  178. )
  179. // Enum value maps for AudioTransport_Integral_AudioFormat.
  180. var (
  181. AudioTransport_Integral_AudioFormat_name = map[int32]string{
  182. 0: "UNKNOWN",
  183. 1: "OPUS",
  184. }
  185. AudioTransport_Integral_AudioFormat_value = map[string]int32{
  186. "UNKNOWN": 0,
  187. "OPUS": 1,
  188. }
  189. )
  190. func (x AudioTransport_Integral_AudioFormat) Enum() *AudioTransport_Integral_AudioFormat {
  191. p := new(AudioTransport_Integral_AudioFormat)
  192. *p = x
  193. return p
  194. }
  195. func (x AudioTransport_Integral_AudioFormat) String() string {
  196. return protoimpl.X.EnumStringOf(x.Descriptor(), protoreflect.EnumNumber(x))
  197. }
  198. func (AudioTransport_Integral_AudioFormat) Descriptor() protoreflect.EnumDescriptor {
  199. return file_waMediaTransport_WAMediaTransport_proto_enumTypes[3].Descriptor()
  200. }
  201. func (AudioTransport_Integral_AudioFormat) Type() protoreflect.EnumType {
  202. return &file_waMediaTransport_WAMediaTransport_proto_enumTypes[3]
  203. }
  204. func (x AudioTransport_Integral_AudioFormat) Number() protoreflect.EnumNumber {
  205. return protoreflect.EnumNumber(x)
  206. }
  207. // Deprecated: Do not use.
  208. func (x *AudioTransport_Integral_AudioFormat) UnmarshalJSON(b []byte) error {
  209. num, err := protoimpl.X.UnmarshalJSONEnum(x.Descriptor(), b)
  210. if err != nil {
  211. return err
  212. }
  213. *x = AudioTransport_Integral_AudioFormat(num)
  214. return nil
  215. }
  216. // Deprecated: Use AudioTransport_Integral_AudioFormat.Descriptor instead.
  217. func (AudioTransport_Integral_AudioFormat) EnumDescriptor() ([]byte, []int) {
  218. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 1, 0}
  219. }
  220. type WAMediaTransport struct {
  221. state protoimpl.MessageState `protogen:"open.v1"`
  222. Integral *WAMediaTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  223. Ancillary *WAMediaTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  224. unknownFields protoimpl.UnknownFields
  225. sizeCache protoimpl.SizeCache
  226. }
  227. func (x *WAMediaTransport) Reset() {
  228. *x = WAMediaTransport{}
  229. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[0]
  230. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  231. ms.StoreMessageInfo(mi)
  232. }
  233. func (x *WAMediaTransport) String() string {
  234. return protoimpl.X.MessageStringOf(x)
  235. }
  236. func (*WAMediaTransport) ProtoMessage() {}
  237. func (x *WAMediaTransport) ProtoReflect() protoreflect.Message {
  238. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[0]
  239. if x != nil {
  240. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  241. if ms.LoadMessageInfo() == nil {
  242. ms.StoreMessageInfo(mi)
  243. }
  244. return ms
  245. }
  246. return mi.MessageOf(x)
  247. }
  248. // Deprecated: Use WAMediaTransport.ProtoReflect.Descriptor instead.
  249. func (*WAMediaTransport) Descriptor() ([]byte, []int) {
  250. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0}
  251. }
  252. func (x *WAMediaTransport) GetIntegral() *WAMediaTransport_Integral {
  253. if x != nil {
  254. return x.Integral
  255. }
  256. return nil
  257. }
  258. func (x *WAMediaTransport) GetAncillary() *WAMediaTransport_Ancillary {
  259. if x != nil {
  260. return x.Ancillary
  261. }
  262. return nil
  263. }
  264. type ImageTransport struct {
  265. state protoimpl.MessageState `protogen:"open.v1"`
  266. Integral *ImageTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  267. Ancillary *ImageTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  268. unknownFields protoimpl.UnknownFields
  269. sizeCache protoimpl.SizeCache
  270. }
  271. func (x *ImageTransport) Reset() {
  272. *x = ImageTransport{}
  273. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[1]
  274. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  275. ms.StoreMessageInfo(mi)
  276. }
  277. func (x *ImageTransport) String() string {
  278. return protoimpl.X.MessageStringOf(x)
  279. }
  280. func (*ImageTransport) ProtoMessage() {}
  281. func (x *ImageTransport) ProtoReflect() protoreflect.Message {
  282. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[1]
  283. if x != nil {
  284. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  285. if ms.LoadMessageInfo() == nil {
  286. ms.StoreMessageInfo(mi)
  287. }
  288. return ms
  289. }
  290. return mi.MessageOf(x)
  291. }
  292. // Deprecated: Use ImageTransport.ProtoReflect.Descriptor instead.
  293. func (*ImageTransport) Descriptor() ([]byte, []int) {
  294. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1}
  295. }
  296. func (x *ImageTransport) GetIntegral() *ImageTransport_Integral {
  297. if x != nil {
  298. return x.Integral
  299. }
  300. return nil
  301. }
  302. func (x *ImageTransport) GetAncillary() *ImageTransport_Ancillary {
  303. if x != nil {
  304. return x.Ancillary
  305. }
  306. return nil
  307. }
  308. type VideoTransport struct {
  309. state protoimpl.MessageState `protogen:"open.v1"`
  310. Integral *VideoTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  311. Ancillary *VideoTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  312. unknownFields protoimpl.UnknownFields
  313. sizeCache protoimpl.SizeCache
  314. }
  315. func (x *VideoTransport) Reset() {
  316. *x = VideoTransport{}
  317. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[2]
  318. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  319. ms.StoreMessageInfo(mi)
  320. }
  321. func (x *VideoTransport) String() string {
  322. return protoimpl.X.MessageStringOf(x)
  323. }
  324. func (*VideoTransport) ProtoMessage() {}
  325. func (x *VideoTransport) ProtoReflect() protoreflect.Message {
  326. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[2]
  327. if x != nil {
  328. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  329. if ms.LoadMessageInfo() == nil {
  330. ms.StoreMessageInfo(mi)
  331. }
  332. return ms
  333. }
  334. return mi.MessageOf(x)
  335. }
  336. // Deprecated: Use VideoTransport.ProtoReflect.Descriptor instead.
  337. func (*VideoTransport) Descriptor() ([]byte, []int) {
  338. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2}
  339. }
  340. func (x *VideoTransport) GetIntegral() *VideoTransport_Integral {
  341. if x != nil {
  342. return x.Integral
  343. }
  344. return nil
  345. }
  346. func (x *VideoTransport) GetAncillary() *VideoTransport_Ancillary {
  347. if x != nil {
  348. return x.Ancillary
  349. }
  350. return nil
  351. }
  352. type AudioTransport struct {
  353. state protoimpl.MessageState `protogen:"open.v1"`
  354. Integral *AudioTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  355. Ancillary *AudioTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  356. unknownFields protoimpl.UnknownFields
  357. sizeCache protoimpl.SizeCache
  358. }
  359. func (x *AudioTransport) Reset() {
  360. *x = AudioTransport{}
  361. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[3]
  362. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  363. ms.StoreMessageInfo(mi)
  364. }
  365. func (x *AudioTransport) String() string {
  366. return protoimpl.X.MessageStringOf(x)
  367. }
  368. func (*AudioTransport) ProtoMessage() {}
  369. func (x *AudioTransport) ProtoReflect() protoreflect.Message {
  370. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[3]
  371. if x != nil {
  372. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  373. if ms.LoadMessageInfo() == nil {
  374. ms.StoreMessageInfo(mi)
  375. }
  376. return ms
  377. }
  378. return mi.MessageOf(x)
  379. }
  380. // Deprecated: Use AudioTransport.ProtoReflect.Descriptor instead.
  381. func (*AudioTransport) Descriptor() ([]byte, []int) {
  382. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3}
  383. }
  384. func (x *AudioTransport) GetIntegral() *AudioTransport_Integral {
  385. if x != nil {
  386. return x.Integral
  387. }
  388. return nil
  389. }
  390. func (x *AudioTransport) GetAncillary() *AudioTransport_Ancillary {
  391. if x != nil {
  392. return x.Ancillary
  393. }
  394. return nil
  395. }
  396. type DocumentTransport struct {
  397. state protoimpl.MessageState `protogen:"open.v1"`
  398. Integral *DocumentTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  399. Ancillary *DocumentTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  400. unknownFields protoimpl.UnknownFields
  401. sizeCache protoimpl.SizeCache
  402. }
  403. func (x *DocumentTransport) Reset() {
  404. *x = DocumentTransport{}
  405. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[4]
  406. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  407. ms.StoreMessageInfo(mi)
  408. }
  409. func (x *DocumentTransport) String() string {
  410. return protoimpl.X.MessageStringOf(x)
  411. }
  412. func (*DocumentTransport) ProtoMessage() {}
  413. func (x *DocumentTransport) ProtoReflect() protoreflect.Message {
  414. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[4]
  415. if x != nil {
  416. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  417. if ms.LoadMessageInfo() == nil {
  418. ms.StoreMessageInfo(mi)
  419. }
  420. return ms
  421. }
  422. return mi.MessageOf(x)
  423. }
  424. // Deprecated: Use DocumentTransport.ProtoReflect.Descriptor instead.
  425. func (*DocumentTransport) Descriptor() ([]byte, []int) {
  426. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4}
  427. }
  428. func (x *DocumentTransport) GetIntegral() *DocumentTransport_Integral {
  429. if x != nil {
  430. return x.Integral
  431. }
  432. return nil
  433. }
  434. func (x *DocumentTransport) GetAncillary() *DocumentTransport_Ancillary {
  435. if x != nil {
  436. return x.Ancillary
  437. }
  438. return nil
  439. }
  440. type StickerTransport struct {
  441. state protoimpl.MessageState `protogen:"open.v1"`
  442. Integral *StickerTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  443. Ancillary *StickerTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  444. unknownFields protoimpl.UnknownFields
  445. sizeCache protoimpl.SizeCache
  446. }
  447. func (x *StickerTransport) Reset() {
  448. *x = StickerTransport{}
  449. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[5]
  450. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  451. ms.StoreMessageInfo(mi)
  452. }
  453. func (x *StickerTransport) String() string {
  454. return protoimpl.X.MessageStringOf(x)
  455. }
  456. func (*StickerTransport) ProtoMessage() {}
  457. func (x *StickerTransport) ProtoReflect() protoreflect.Message {
  458. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[5]
  459. if x != nil {
  460. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  461. if ms.LoadMessageInfo() == nil {
  462. ms.StoreMessageInfo(mi)
  463. }
  464. return ms
  465. }
  466. return mi.MessageOf(x)
  467. }
  468. // Deprecated: Use StickerTransport.ProtoReflect.Descriptor instead.
  469. func (*StickerTransport) Descriptor() ([]byte, []int) {
  470. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5}
  471. }
  472. func (x *StickerTransport) GetIntegral() *StickerTransport_Integral {
  473. if x != nil {
  474. return x.Integral
  475. }
  476. return nil
  477. }
  478. func (x *StickerTransport) GetAncillary() *StickerTransport_Ancillary {
  479. if x != nil {
  480. return x.Ancillary
  481. }
  482. return nil
  483. }
  484. type ContactTransport struct {
  485. state protoimpl.MessageState `protogen:"open.v1"`
  486. Integral *ContactTransport_Integral `protobuf:"bytes,1,opt,name=integral" json:"integral,omitempty"`
  487. Ancillary *ContactTransport_Ancillary `protobuf:"bytes,2,opt,name=ancillary" json:"ancillary,omitempty"`
  488. unknownFields protoimpl.UnknownFields
  489. sizeCache protoimpl.SizeCache
  490. }
  491. func (x *ContactTransport) Reset() {
  492. *x = ContactTransport{}
  493. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[6]
  494. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  495. ms.StoreMessageInfo(mi)
  496. }
  497. func (x *ContactTransport) String() string {
  498. return protoimpl.X.MessageStringOf(x)
  499. }
  500. func (*ContactTransport) ProtoMessage() {}
  501. func (x *ContactTransport) ProtoReflect() protoreflect.Message {
  502. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[6]
  503. if x != nil {
  504. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  505. if ms.LoadMessageInfo() == nil {
  506. ms.StoreMessageInfo(mi)
  507. }
  508. return ms
  509. }
  510. return mi.MessageOf(x)
  511. }
  512. // Deprecated: Use ContactTransport.ProtoReflect.Descriptor instead.
  513. func (*ContactTransport) Descriptor() ([]byte, []int) {
  514. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6}
  515. }
  516. func (x *ContactTransport) GetIntegral() *ContactTransport_Integral {
  517. if x != nil {
  518. return x.Integral
  519. }
  520. return nil
  521. }
  522. func (x *ContactTransport) GetAncillary() *ContactTransport_Ancillary {
  523. if x != nil {
  524. return x.Ancillary
  525. }
  526. return nil
  527. }
  528. type WAMediaTransport_Ancillary struct {
  529. state protoimpl.MessageState `protogen:"open.v1"`
  530. FileLength *uint64 `protobuf:"varint,1,opt,name=fileLength" json:"fileLength,omitempty"`
  531. Mimetype *string `protobuf:"bytes,2,opt,name=mimetype" json:"mimetype,omitempty"`
  532. Thumbnail *WAMediaTransport_Ancillary_Thumbnail `protobuf:"bytes,3,opt,name=thumbnail" json:"thumbnail,omitempty"`
  533. ObjectID *string `protobuf:"bytes,4,opt,name=objectID" json:"objectID,omitempty"`
  534. unknownFields protoimpl.UnknownFields
  535. sizeCache protoimpl.SizeCache
  536. }
  537. func (x *WAMediaTransport_Ancillary) Reset() {
  538. *x = WAMediaTransport_Ancillary{}
  539. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[7]
  540. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  541. ms.StoreMessageInfo(mi)
  542. }
  543. func (x *WAMediaTransport_Ancillary) String() string {
  544. return protoimpl.X.MessageStringOf(x)
  545. }
  546. func (*WAMediaTransport_Ancillary) ProtoMessage() {}
  547. func (x *WAMediaTransport_Ancillary) ProtoReflect() protoreflect.Message {
  548. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[7]
  549. if x != nil {
  550. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  551. if ms.LoadMessageInfo() == nil {
  552. ms.StoreMessageInfo(mi)
  553. }
  554. return ms
  555. }
  556. return mi.MessageOf(x)
  557. }
  558. // Deprecated: Use WAMediaTransport_Ancillary.ProtoReflect.Descriptor instead.
  559. func (*WAMediaTransport_Ancillary) Descriptor() ([]byte, []int) {
  560. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0}
  561. }
  562. func (x *WAMediaTransport_Ancillary) GetFileLength() uint64 {
  563. if x != nil && x.FileLength != nil {
  564. return *x.FileLength
  565. }
  566. return 0
  567. }
  568. func (x *WAMediaTransport_Ancillary) GetMimetype() string {
  569. if x != nil && x.Mimetype != nil {
  570. return *x.Mimetype
  571. }
  572. return ""
  573. }
  574. func (x *WAMediaTransport_Ancillary) GetThumbnail() *WAMediaTransport_Ancillary_Thumbnail {
  575. if x != nil {
  576. return x.Thumbnail
  577. }
  578. return nil
  579. }
  580. func (x *WAMediaTransport_Ancillary) GetObjectID() string {
  581. if x != nil && x.ObjectID != nil {
  582. return *x.ObjectID
  583. }
  584. return ""
  585. }
  586. type WAMediaTransport_Integral struct {
  587. state protoimpl.MessageState `protogen:"open.v1"`
  588. FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
  589. MediaKey []byte `protobuf:"bytes,2,opt,name=mediaKey" json:"mediaKey,omitempty"`
  590. FileEncSHA256 []byte `protobuf:"bytes,3,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
  591. DirectPath *string `protobuf:"bytes,4,opt,name=directPath" json:"directPath,omitempty"`
  592. MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
  593. unknownFields protoimpl.UnknownFields
  594. sizeCache protoimpl.SizeCache
  595. }
  596. func (x *WAMediaTransport_Integral) Reset() {
  597. *x = WAMediaTransport_Integral{}
  598. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[8]
  599. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  600. ms.StoreMessageInfo(mi)
  601. }
  602. func (x *WAMediaTransport_Integral) String() string {
  603. return protoimpl.X.MessageStringOf(x)
  604. }
  605. func (*WAMediaTransport_Integral) ProtoMessage() {}
  606. func (x *WAMediaTransport_Integral) ProtoReflect() protoreflect.Message {
  607. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[8]
  608. if x != nil {
  609. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  610. if ms.LoadMessageInfo() == nil {
  611. ms.StoreMessageInfo(mi)
  612. }
  613. return ms
  614. }
  615. return mi.MessageOf(x)
  616. }
  617. // Deprecated: Use WAMediaTransport_Integral.ProtoReflect.Descriptor instead.
  618. func (*WAMediaTransport_Integral) Descriptor() ([]byte, []int) {
  619. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 1}
  620. }
  621. func (x *WAMediaTransport_Integral) GetFileSHA256() []byte {
  622. if x != nil {
  623. return x.FileSHA256
  624. }
  625. return nil
  626. }
  627. func (x *WAMediaTransport_Integral) GetMediaKey() []byte {
  628. if x != nil {
  629. return x.MediaKey
  630. }
  631. return nil
  632. }
  633. func (x *WAMediaTransport_Integral) GetFileEncSHA256() []byte {
  634. if x != nil {
  635. return x.FileEncSHA256
  636. }
  637. return nil
  638. }
  639. func (x *WAMediaTransport_Integral) GetDirectPath() string {
  640. if x != nil && x.DirectPath != nil {
  641. return *x.DirectPath
  642. }
  643. return ""
  644. }
  645. func (x *WAMediaTransport_Integral) GetMediaKeyTimestamp() int64 {
  646. if x != nil && x.MediaKeyTimestamp != nil {
  647. return *x.MediaKeyTimestamp
  648. }
  649. return 0
  650. }
  651. type WAMediaTransport_Ancillary_Thumbnail struct {
  652. state protoimpl.MessageState `protogen:"open.v1"`
  653. JPEGThumbnail []byte `protobuf:"bytes,1,opt,name=JPEGThumbnail" json:"JPEGThumbnail,omitempty"`
  654. DownloadableThumbnail *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail `protobuf:"bytes,2,opt,name=downloadableThumbnail" json:"downloadableThumbnail,omitempty"`
  655. ThumbnailWidth *uint32 `protobuf:"varint,3,opt,name=thumbnailWidth" json:"thumbnailWidth,omitempty"`
  656. ThumbnailHeight *uint32 `protobuf:"varint,4,opt,name=thumbnailHeight" json:"thumbnailHeight,omitempty"`
  657. unknownFields protoimpl.UnknownFields
  658. sizeCache protoimpl.SizeCache
  659. }
  660. func (x *WAMediaTransport_Ancillary_Thumbnail) Reset() {
  661. *x = WAMediaTransport_Ancillary_Thumbnail{}
  662. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[9]
  663. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  664. ms.StoreMessageInfo(mi)
  665. }
  666. func (x *WAMediaTransport_Ancillary_Thumbnail) String() string {
  667. return protoimpl.X.MessageStringOf(x)
  668. }
  669. func (*WAMediaTransport_Ancillary_Thumbnail) ProtoMessage() {}
  670. func (x *WAMediaTransport_Ancillary_Thumbnail) ProtoReflect() protoreflect.Message {
  671. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[9]
  672. if x != nil {
  673. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  674. if ms.LoadMessageInfo() == nil {
  675. ms.StoreMessageInfo(mi)
  676. }
  677. return ms
  678. }
  679. return mi.MessageOf(x)
  680. }
  681. // Deprecated: Use WAMediaTransport_Ancillary_Thumbnail.ProtoReflect.Descriptor instead.
  682. func (*WAMediaTransport_Ancillary_Thumbnail) Descriptor() ([]byte, []int) {
  683. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0, 0}
  684. }
  685. func (x *WAMediaTransport_Ancillary_Thumbnail) GetJPEGThumbnail() []byte {
  686. if x != nil {
  687. return x.JPEGThumbnail
  688. }
  689. return nil
  690. }
  691. func (x *WAMediaTransport_Ancillary_Thumbnail) GetDownloadableThumbnail() *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail {
  692. if x != nil {
  693. return x.DownloadableThumbnail
  694. }
  695. return nil
  696. }
  697. func (x *WAMediaTransport_Ancillary_Thumbnail) GetThumbnailWidth() uint32 {
  698. if x != nil && x.ThumbnailWidth != nil {
  699. return *x.ThumbnailWidth
  700. }
  701. return 0
  702. }
  703. func (x *WAMediaTransport_Ancillary_Thumbnail) GetThumbnailHeight() uint32 {
  704. if x != nil && x.ThumbnailHeight != nil {
  705. return *x.ThumbnailHeight
  706. }
  707. return 0
  708. }
  709. type WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail struct {
  710. state protoimpl.MessageState `protogen:"open.v1"`
  711. FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
  712. FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
  713. DirectPath *string `protobuf:"bytes,3,opt,name=directPath" json:"directPath,omitempty"`
  714. MediaKey []byte `protobuf:"bytes,4,opt,name=mediaKey" json:"mediaKey,omitempty"`
  715. MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
  716. ObjectID *string `protobuf:"bytes,6,opt,name=objectID" json:"objectID,omitempty"`
  717. ThumbnailScansSidecar []byte `protobuf:"bytes,7,opt,name=thumbnailScansSidecar" json:"thumbnailScansSidecar,omitempty"`
  718. ThumbnailScanLengths []uint32 `protobuf:"varint,8,rep,name=thumbnailScanLengths" json:"thumbnailScanLengths,omitempty"`
  719. unknownFields protoimpl.UnknownFields
  720. sizeCache protoimpl.SizeCache
  721. }
  722. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) Reset() {
  723. *x = WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail{}
  724. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[10]
  725. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  726. ms.StoreMessageInfo(mi)
  727. }
  728. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) String() string {
  729. return protoimpl.X.MessageStringOf(x)
  730. }
  731. func (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) ProtoMessage() {}
  732. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) ProtoReflect() protoreflect.Message {
  733. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[10]
  734. if x != nil {
  735. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  736. if ms.LoadMessageInfo() == nil {
  737. ms.StoreMessageInfo(mi)
  738. }
  739. return ms
  740. }
  741. return mi.MessageOf(x)
  742. }
  743. // Deprecated: Use WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail.ProtoReflect.Descriptor instead.
  744. func (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) Descriptor() ([]byte, []int) {
  745. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{0, 0, 0, 0}
  746. }
  747. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetFileSHA256() []byte {
  748. if x != nil {
  749. return x.FileSHA256
  750. }
  751. return nil
  752. }
  753. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetFileEncSHA256() []byte {
  754. if x != nil {
  755. return x.FileEncSHA256
  756. }
  757. return nil
  758. }
  759. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetDirectPath() string {
  760. if x != nil && x.DirectPath != nil {
  761. return *x.DirectPath
  762. }
  763. return ""
  764. }
  765. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetMediaKey() []byte {
  766. if x != nil {
  767. return x.MediaKey
  768. }
  769. return nil
  770. }
  771. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetMediaKeyTimestamp() int64 {
  772. if x != nil && x.MediaKeyTimestamp != nil {
  773. return *x.MediaKeyTimestamp
  774. }
  775. return 0
  776. }
  777. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetObjectID() string {
  778. if x != nil && x.ObjectID != nil {
  779. return *x.ObjectID
  780. }
  781. return ""
  782. }
  783. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetThumbnailScansSidecar() []byte {
  784. if x != nil {
  785. return x.ThumbnailScansSidecar
  786. }
  787. return nil
  788. }
  789. func (x *WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail) GetThumbnailScanLengths() []uint32 {
  790. if x != nil {
  791. return x.ThumbnailScanLengths
  792. }
  793. return nil
  794. }
  795. type ImageTransport_Ancillary struct {
  796. state protoimpl.MessageState `protogen:"open.v1"`
  797. Height *uint32 `protobuf:"varint,1,opt,name=height" json:"height,omitempty"`
  798. Width *uint32 `protobuf:"varint,2,opt,name=width" json:"width,omitempty"`
  799. ScansSidecar []byte `protobuf:"bytes,3,opt,name=scansSidecar" json:"scansSidecar,omitempty"`
  800. ScanLengths []uint32 `protobuf:"varint,4,rep,name=scanLengths" json:"scanLengths,omitempty"`
  801. MidQualityFileSHA256 []byte `protobuf:"bytes,5,opt,name=midQualityFileSHA256" json:"midQualityFileSHA256,omitempty"`
  802. HdType *ImageTransport_Ancillary_HdType `protobuf:"varint,6,opt,name=hdType,enum=WAMediaTransport.ImageTransport_Ancillary_HdType" json:"hdType,omitempty"`
  803. MemoriesConceptScores []float32 `protobuf:"fixed32,7,rep,packed,name=memoriesConceptScores" json:"memoriesConceptScores,omitempty"`
  804. MemoriesConceptIDs []uint32 `protobuf:"varint,8,rep,packed,name=memoriesConceptIDs" json:"memoriesConceptIDs,omitempty"`
  805. unknownFields protoimpl.UnknownFields
  806. sizeCache protoimpl.SizeCache
  807. }
  808. func (x *ImageTransport_Ancillary) Reset() {
  809. *x = ImageTransport_Ancillary{}
  810. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[11]
  811. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  812. ms.StoreMessageInfo(mi)
  813. }
  814. func (x *ImageTransport_Ancillary) String() string {
  815. return protoimpl.X.MessageStringOf(x)
  816. }
  817. func (*ImageTransport_Ancillary) ProtoMessage() {}
  818. func (x *ImageTransport_Ancillary) ProtoReflect() protoreflect.Message {
  819. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[11]
  820. if x != nil {
  821. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  822. if ms.LoadMessageInfo() == nil {
  823. ms.StoreMessageInfo(mi)
  824. }
  825. return ms
  826. }
  827. return mi.MessageOf(x)
  828. }
  829. // Deprecated: Use ImageTransport_Ancillary.ProtoReflect.Descriptor instead.
  830. func (*ImageTransport_Ancillary) Descriptor() ([]byte, []int) {
  831. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 0}
  832. }
  833. func (x *ImageTransport_Ancillary) GetHeight() uint32 {
  834. if x != nil && x.Height != nil {
  835. return *x.Height
  836. }
  837. return 0
  838. }
  839. func (x *ImageTransport_Ancillary) GetWidth() uint32 {
  840. if x != nil && x.Width != nil {
  841. return *x.Width
  842. }
  843. return 0
  844. }
  845. func (x *ImageTransport_Ancillary) GetScansSidecar() []byte {
  846. if x != nil {
  847. return x.ScansSidecar
  848. }
  849. return nil
  850. }
  851. func (x *ImageTransport_Ancillary) GetScanLengths() []uint32 {
  852. if x != nil {
  853. return x.ScanLengths
  854. }
  855. return nil
  856. }
  857. func (x *ImageTransport_Ancillary) GetMidQualityFileSHA256() []byte {
  858. if x != nil {
  859. return x.MidQualityFileSHA256
  860. }
  861. return nil
  862. }
  863. func (x *ImageTransport_Ancillary) GetHdType() ImageTransport_Ancillary_HdType {
  864. if x != nil && x.HdType != nil {
  865. return *x.HdType
  866. }
  867. return ImageTransport_Ancillary_NONE
  868. }
  869. func (x *ImageTransport_Ancillary) GetMemoriesConceptScores() []float32 {
  870. if x != nil {
  871. return x.MemoriesConceptScores
  872. }
  873. return nil
  874. }
  875. func (x *ImageTransport_Ancillary) GetMemoriesConceptIDs() []uint32 {
  876. if x != nil {
  877. return x.MemoriesConceptIDs
  878. }
  879. return nil
  880. }
  881. type ImageTransport_Integral struct {
  882. state protoimpl.MessageState `protogen:"open.v1"`
  883. Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
  884. unknownFields protoimpl.UnknownFields
  885. sizeCache protoimpl.SizeCache
  886. }
  887. func (x *ImageTransport_Integral) Reset() {
  888. *x = ImageTransport_Integral{}
  889. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[12]
  890. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  891. ms.StoreMessageInfo(mi)
  892. }
  893. func (x *ImageTransport_Integral) String() string {
  894. return protoimpl.X.MessageStringOf(x)
  895. }
  896. func (*ImageTransport_Integral) ProtoMessage() {}
  897. func (x *ImageTransport_Integral) ProtoReflect() protoreflect.Message {
  898. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[12]
  899. if x != nil {
  900. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  901. if ms.LoadMessageInfo() == nil {
  902. ms.StoreMessageInfo(mi)
  903. }
  904. return ms
  905. }
  906. return mi.MessageOf(x)
  907. }
  908. // Deprecated: Use ImageTransport_Integral.ProtoReflect.Descriptor instead.
  909. func (*ImageTransport_Integral) Descriptor() ([]byte, []int) {
  910. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{1, 1}
  911. }
  912. func (x *ImageTransport_Integral) GetTransport() *WAMediaTransport {
  913. if x != nil {
  914. return x.Transport
  915. }
  916. return nil
  917. }
  918. type VideoTransport_Ancillary struct {
  919. state protoimpl.MessageState `protogen:"open.v1"`
  920. Seconds *uint32 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
  921. Caption *waCommon.MessageText `protobuf:"bytes,2,opt,name=caption" json:"caption,omitempty"`
  922. GifPlayback *bool `protobuf:"varint,3,opt,name=gifPlayback" json:"gifPlayback,omitempty"`
  923. Height *uint32 `protobuf:"varint,4,opt,name=height" json:"height,omitempty"`
  924. Width *uint32 `protobuf:"varint,5,opt,name=width" json:"width,omitempty"`
  925. Sidecar []byte `protobuf:"bytes,6,opt,name=sidecar" json:"sidecar,omitempty"`
  926. GifAttribution *VideoTransport_Ancillary_Attribution `protobuf:"varint,7,opt,name=gifAttribution,enum=WAMediaTransport.VideoTransport_Ancillary_Attribution" json:"gifAttribution,omitempty"`
  927. AccessibilityLabel *string `protobuf:"bytes,8,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
  928. IsHd *bool `protobuf:"varint,9,opt,name=isHd" json:"isHd,omitempty"`
  929. unknownFields protoimpl.UnknownFields
  930. sizeCache protoimpl.SizeCache
  931. }
  932. func (x *VideoTransport_Ancillary) Reset() {
  933. *x = VideoTransport_Ancillary{}
  934. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[13]
  935. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  936. ms.StoreMessageInfo(mi)
  937. }
  938. func (x *VideoTransport_Ancillary) String() string {
  939. return protoimpl.X.MessageStringOf(x)
  940. }
  941. func (*VideoTransport_Ancillary) ProtoMessage() {}
  942. func (x *VideoTransport_Ancillary) ProtoReflect() protoreflect.Message {
  943. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[13]
  944. if x != nil {
  945. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  946. if ms.LoadMessageInfo() == nil {
  947. ms.StoreMessageInfo(mi)
  948. }
  949. return ms
  950. }
  951. return mi.MessageOf(x)
  952. }
  953. // Deprecated: Use VideoTransport_Ancillary.ProtoReflect.Descriptor instead.
  954. func (*VideoTransport_Ancillary) Descriptor() ([]byte, []int) {
  955. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 0}
  956. }
  957. func (x *VideoTransport_Ancillary) GetSeconds() uint32 {
  958. if x != nil && x.Seconds != nil {
  959. return *x.Seconds
  960. }
  961. return 0
  962. }
  963. func (x *VideoTransport_Ancillary) GetCaption() *waCommon.MessageText {
  964. if x != nil {
  965. return x.Caption
  966. }
  967. return nil
  968. }
  969. func (x *VideoTransport_Ancillary) GetGifPlayback() bool {
  970. if x != nil && x.GifPlayback != nil {
  971. return *x.GifPlayback
  972. }
  973. return false
  974. }
  975. func (x *VideoTransport_Ancillary) GetHeight() uint32 {
  976. if x != nil && x.Height != nil {
  977. return *x.Height
  978. }
  979. return 0
  980. }
  981. func (x *VideoTransport_Ancillary) GetWidth() uint32 {
  982. if x != nil && x.Width != nil {
  983. return *x.Width
  984. }
  985. return 0
  986. }
  987. func (x *VideoTransport_Ancillary) GetSidecar() []byte {
  988. if x != nil {
  989. return x.Sidecar
  990. }
  991. return nil
  992. }
  993. func (x *VideoTransport_Ancillary) GetGifAttribution() VideoTransport_Ancillary_Attribution {
  994. if x != nil && x.GifAttribution != nil {
  995. return *x.GifAttribution
  996. }
  997. return VideoTransport_Ancillary_NONE
  998. }
  999. func (x *VideoTransport_Ancillary) GetAccessibilityLabel() string {
  1000. if x != nil && x.AccessibilityLabel != nil {
  1001. return *x.AccessibilityLabel
  1002. }
  1003. return ""
  1004. }
  1005. func (x *VideoTransport_Ancillary) GetIsHd() bool {
  1006. if x != nil && x.IsHd != nil {
  1007. return *x.IsHd
  1008. }
  1009. return false
  1010. }
  1011. type VideoTransport_Integral struct {
  1012. state protoimpl.MessageState `protogen:"open.v1"`
  1013. Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
  1014. unknownFields protoimpl.UnknownFields
  1015. sizeCache protoimpl.SizeCache
  1016. }
  1017. func (x *VideoTransport_Integral) Reset() {
  1018. *x = VideoTransport_Integral{}
  1019. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[14]
  1020. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1021. ms.StoreMessageInfo(mi)
  1022. }
  1023. func (x *VideoTransport_Integral) String() string {
  1024. return protoimpl.X.MessageStringOf(x)
  1025. }
  1026. func (*VideoTransport_Integral) ProtoMessage() {}
  1027. func (x *VideoTransport_Integral) ProtoReflect() protoreflect.Message {
  1028. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[14]
  1029. if x != nil {
  1030. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1031. if ms.LoadMessageInfo() == nil {
  1032. ms.StoreMessageInfo(mi)
  1033. }
  1034. return ms
  1035. }
  1036. return mi.MessageOf(x)
  1037. }
  1038. // Deprecated: Use VideoTransport_Integral.ProtoReflect.Descriptor instead.
  1039. func (*VideoTransport_Integral) Descriptor() ([]byte, []int) {
  1040. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{2, 1}
  1041. }
  1042. func (x *VideoTransport_Integral) GetTransport() *WAMediaTransport {
  1043. if x != nil {
  1044. return x.Transport
  1045. }
  1046. return nil
  1047. }
  1048. type AudioTransport_Ancillary struct {
  1049. state protoimpl.MessageState `protogen:"open.v1"`
  1050. Seconds *uint32 `protobuf:"varint,1,opt,name=seconds" json:"seconds,omitempty"`
  1051. AvatarAudio *AudioTransport_Ancillary_AvatarAudio `protobuf:"bytes,2,opt,name=avatarAudio" json:"avatarAudio,omitempty"`
  1052. WaveformData *string `protobuf:"bytes,3,opt,name=waveformData" json:"waveformData,omitempty"`
  1053. Waveform []byte `protobuf:"bytes,4,opt,name=waveform" json:"waveform,omitempty"`
  1054. unknownFields protoimpl.UnknownFields
  1055. sizeCache protoimpl.SizeCache
  1056. }
  1057. func (x *AudioTransport_Ancillary) Reset() {
  1058. *x = AudioTransport_Ancillary{}
  1059. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[15]
  1060. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1061. ms.StoreMessageInfo(mi)
  1062. }
  1063. func (x *AudioTransport_Ancillary) String() string {
  1064. return protoimpl.X.MessageStringOf(x)
  1065. }
  1066. func (*AudioTransport_Ancillary) ProtoMessage() {}
  1067. func (x *AudioTransport_Ancillary) ProtoReflect() protoreflect.Message {
  1068. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[15]
  1069. if x != nil {
  1070. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1071. if ms.LoadMessageInfo() == nil {
  1072. ms.StoreMessageInfo(mi)
  1073. }
  1074. return ms
  1075. }
  1076. return mi.MessageOf(x)
  1077. }
  1078. // Deprecated: Use AudioTransport_Ancillary.ProtoReflect.Descriptor instead.
  1079. func (*AudioTransport_Ancillary) Descriptor() ([]byte, []int) {
  1080. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0}
  1081. }
  1082. func (x *AudioTransport_Ancillary) GetSeconds() uint32 {
  1083. if x != nil && x.Seconds != nil {
  1084. return *x.Seconds
  1085. }
  1086. return 0
  1087. }
  1088. func (x *AudioTransport_Ancillary) GetAvatarAudio() *AudioTransport_Ancillary_AvatarAudio {
  1089. if x != nil {
  1090. return x.AvatarAudio
  1091. }
  1092. return nil
  1093. }
  1094. func (x *AudioTransport_Ancillary) GetWaveformData() string {
  1095. if x != nil && x.WaveformData != nil {
  1096. return *x.WaveformData
  1097. }
  1098. return ""
  1099. }
  1100. func (x *AudioTransport_Ancillary) GetWaveform() []byte {
  1101. if x != nil {
  1102. return x.Waveform
  1103. }
  1104. return nil
  1105. }
  1106. type AudioTransport_Integral struct {
  1107. state protoimpl.MessageState `protogen:"open.v1"`
  1108. Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
  1109. AudioFormat *AudioTransport_Integral_AudioFormat `protobuf:"varint,2,opt,name=audioFormat,enum=WAMediaTransport.AudioTransport_Integral_AudioFormat" json:"audioFormat,omitempty"`
  1110. unknownFields protoimpl.UnknownFields
  1111. sizeCache protoimpl.SizeCache
  1112. }
  1113. func (x *AudioTransport_Integral) Reset() {
  1114. *x = AudioTransport_Integral{}
  1115. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[16]
  1116. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1117. ms.StoreMessageInfo(mi)
  1118. }
  1119. func (x *AudioTransport_Integral) String() string {
  1120. return protoimpl.X.MessageStringOf(x)
  1121. }
  1122. func (*AudioTransport_Integral) ProtoMessage() {}
  1123. func (x *AudioTransport_Integral) ProtoReflect() protoreflect.Message {
  1124. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[16]
  1125. if x != nil {
  1126. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1127. if ms.LoadMessageInfo() == nil {
  1128. ms.StoreMessageInfo(mi)
  1129. }
  1130. return ms
  1131. }
  1132. return mi.MessageOf(x)
  1133. }
  1134. // Deprecated: Use AudioTransport_Integral.ProtoReflect.Descriptor instead.
  1135. func (*AudioTransport_Integral) Descriptor() ([]byte, []int) {
  1136. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 1}
  1137. }
  1138. func (x *AudioTransport_Integral) GetTransport() *WAMediaTransport {
  1139. if x != nil {
  1140. return x.Transport
  1141. }
  1142. return nil
  1143. }
  1144. func (x *AudioTransport_Integral) GetAudioFormat() AudioTransport_Integral_AudioFormat {
  1145. if x != nil && x.AudioFormat != nil {
  1146. return *x.AudioFormat
  1147. }
  1148. return AudioTransport_Integral_UNKNOWN
  1149. }
  1150. type AudioTransport_Ancillary_AvatarAudio struct {
  1151. state protoimpl.MessageState `protogen:"open.v1"`
  1152. PoseID *uint32 `protobuf:"varint,1,opt,name=poseID" json:"poseID,omitempty"`
  1153. AvatarAnimations []*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations `protobuf:"bytes,2,rep,name=avatarAnimations" json:"avatarAnimations,omitempty"`
  1154. unknownFields protoimpl.UnknownFields
  1155. sizeCache protoimpl.SizeCache
  1156. }
  1157. func (x *AudioTransport_Ancillary_AvatarAudio) Reset() {
  1158. *x = AudioTransport_Ancillary_AvatarAudio{}
  1159. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[17]
  1160. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1161. ms.StoreMessageInfo(mi)
  1162. }
  1163. func (x *AudioTransport_Ancillary_AvatarAudio) String() string {
  1164. return protoimpl.X.MessageStringOf(x)
  1165. }
  1166. func (*AudioTransport_Ancillary_AvatarAudio) ProtoMessage() {}
  1167. func (x *AudioTransport_Ancillary_AvatarAudio) ProtoReflect() protoreflect.Message {
  1168. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[17]
  1169. if x != nil {
  1170. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1171. if ms.LoadMessageInfo() == nil {
  1172. ms.StoreMessageInfo(mi)
  1173. }
  1174. return ms
  1175. }
  1176. return mi.MessageOf(x)
  1177. }
  1178. // Deprecated: Use AudioTransport_Ancillary_AvatarAudio.ProtoReflect.Descriptor instead.
  1179. func (*AudioTransport_Ancillary_AvatarAudio) Descriptor() ([]byte, []int) {
  1180. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0}
  1181. }
  1182. func (x *AudioTransport_Ancillary_AvatarAudio) GetPoseID() uint32 {
  1183. if x != nil && x.PoseID != nil {
  1184. return *x.PoseID
  1185. }
  1186. return 0
  1187. }
  1188. func (x *AudioTransport_Ancillary_AvatarAudio) GetAvatarAnimations() []*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations {
  1189. if x != nil {
  1190. return x.AvatarAnimations
  1191. }
  1192. return nil
  1193. }
  1194. type AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations struct {
  1195. state protoimpl.MessageState `protogen:"open.v1"`
  1196. FileSHA256 []byte `protobuf:"bytes,1,opt,name=fileSHA256" json:"fileSHA256,omitempty"`
  1197. FileEncSHA256 []byte `protobuf:"bytes,2,opt,name=fileEncSHA256" json:"fileEncSHA256,omitempty"`
  1198. DirectPath *string `protobuf:"bytes,3,opt,name=directPath" json:"directPath,omitempty"`
  1199. MediaKey []byte `protobuf:"bytes,4,opt,name=mediaKey" json:"mediaKey,omitempty"`
  1200. MediaKeyTimestamp *int64 `protobuf:"varint,5,opt,name=mediaKeyTimestamp" json:"mediaKeyTimestamp,omitempty"`
  1201. ObjectID *string `protobuf:"bytes,6,opt,name=objectID" json:"objectID,omitempty"`
  1202. AnimationsType *AudioTransport_Ancillary_AvatarAudio_AnimationsType `protobuf:"varint,7,opt,name=animationsType,enum=WAMediaTransport.AudioTransport_Ancillary_AvatarAudio_AnimationsType" json:"animationsType,omitempty"`
  1203. unknownFields protoimpl.UnknownFields
  1204. sizeCache protoimpl.SizeCache
  1205. }
  1206. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) Reset() {
  1207. *x = AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations{}
  1208. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[18]
  1209. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1210. ms.StoreMessageInfo(mi)
  1211. }
  1212. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) String() string {
  1213. return protoimpl.X.MessageStringOf(x)
  1214. }
  1215. func (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) ProtoMessage() {}
  1216. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) ProtoReflect() protoreflect.Message {
  1217. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[18]
  1218. if x != nil {
  1219. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1220. if ms.LoadMessageInfo() == nil {
  1221. ms.StoreMessageInfo(mi)
  1222. }
  1223. return ms
  1224. }
  1225. return mi.MessageOf(x)
  1226. }
  1227. // Deprecated: Use AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations.ProtoReflect.Descriptor instead.
  1228. func (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) Descriptor() ([]byte, []int) {
  1229. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{3, 0, 0, 0}
  1230. }
  1231. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetFileSHA256() []byte {
  1232. if x != nil {
  1233. return x.FileSHA256
  1234. }
  1235. return nil
  1236. }
  1237. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetFileEncSHA256() []byte {
  1238. if x != nil {
  1239. return x.FileEncSHA256
  1240. }
  1241. return nil
  1242. }
  1243. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetDirectPath() string {
  1244. if x != nil && x.DirectPath != nil {
  1245. return *x.DirectPath
  1246. }
  1247. return ""
  1248. }
  1249. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetMediaKey() []byte {
  1250. if x != nil {
  1251. return x.MediaKey
  1252. }
  1253. return nil
  1254. }
  1255. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetMediaKeyTimestamp() int64 {
  1256. if x != nil && x.MediaKeyTimestamp != nil {
  1257. return *x.MediaKeyTimestamp
  1258. }
  1259. return 0
  1260. }
  1261. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetObjectID() string {
  1262. if x != nil && x.ObjectID != nil {
  1263. return *x.ObjectID
  1264. }
  1265. return ""
  1266. }
  1267. func (x *AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations) GetAnimationsType() AudioTransport_Ancillary_AvatarAudio_AnimationsType {
  1268. if x != nil && x.AnimationsType != nil {
  1269. return *x.AnimationsType
  1270. }
  1271. return AudioTransport_Ancillary_AvatarAudio_TALKING_A
  1272. }
  1273. type DocumentTransport_Ancillary struct {
  1274. state protoimpl.MessageState `protogen:"open.v1"`
  1275. PageCount *uint32 `protobuf:"varint,1,opt,name=pageCount" json:"pageCount,omitempty"`
  1276. unknownFields protoimpl.UnknownFields
  1277. sizeCache protoimpl.SizeCache
  1278. }
  1279. func (x *DocumentTransport_Ancillary) Reset() {
  1280. *x = DocumentTransport_Ancillary{}
  1281. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[19]
  1282. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1283. ms.StoreMessageInfo(mi)
  1284. }
  1285. func (x *DocumentTransport_Ancillary) String() string {
  1286. return protoimpl.X.MessageStringOf(x)
  1287. }
  1288. func (*DocumentTransport_Ancillary) ProtoMessage() {}
  1289. func (x *DocumentTransport_Ancillary) ProtoReflect() protoreflect.Message {
  1290. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[19]
  1291. if x != nil {
  1292. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1293. if ms.LoadMessageInfo() == nil {
  1294. ms.StoreMessageInfo(mi)
  1295. }
  1296. return ms
  1297. }
  1298. return mi.MessageOf(x)
  1299. }
  1300. // Deprecated: Use DocumentTransport_Ancillary.ProtoReflect.Descriptor instead.
  1301. func (*DocumentTransport_Ancillary) Descriptor() ([]byte, []int) {
  1302. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4, 0}
  1303. }
  1304. func (x *DocumentTransport_Ancillary) GetPageCount() uint32 {
  1305. if x != nil && x.PageCount != nil {
  1306. return *x.PageCount
  1307. }
  1308. return 0
  1309. }
  1310. type DocumentTransport_Integral struct {
  1311. state protoimpl.MessageState `protogen:"open.v1"`
  1312. Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
  1313. unknownFields protoimpl.UnknownFields
  1314. sizeCache protoimpl.SizeCache
  1315. }
  1316. func (x *DocumentTransport_Integral) Reset() {
  1317. *x = DocumentTransport_Integral{}
  1318. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[20]
  1319. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1320. ms.StoreMessageInfo(mi)
  1321. }
  1322. func (x *DocumentTransport_Integral) String() string {
  1323. return protoimpl.X.MessageStringOf(x)
  1324. }
  1325. func (*DocumentTransport_Integral) ProtoMessage() {}
  1326. func (x *DocumentTransport_Integral) ProtoReflect() protoreflect.Message {
  1327. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[20]
  1328. if x != nil {
  1329. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1330. if ms.LoadMessageInfo() == nil {
  1331. ms.StoreMessageInfo(mi)
  1332. }
  1333. return ms
  1334. }
  1335. return mi.MessageOf(x)
  1336. }
  1337. // Deprecated: Use DocumentTransport_Integral.ProtoReflect.Descriptor instead.
  1338. func (*DocumentTransport_Integral) Descriptor() ([]byte, []int) {
  1339. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{4, 1}
  1340. }
  1341. func (x *DocumentTransport_Integral) GetTransport() *WAMediaTransport {
  1342. if x != nil {
  1343. return x.Transport
  1344. }
  1345. return nil
  1346. }
  1347. type StickerTransport_Ancillary struct {
  1348. state protoimpl.MessageState `protogen:"open.v1"`
  1349. PageCount *uint32 `protobuf:"varint,1,opt,name=pageCount" json:"pageCount,omitempty"`
  1350. Height *uint32 `protobuf:"varint,2,opt,name=height" json:"height,omitempty"`
  1351. Width *uint32 `protobuf:"varint,3,opt,name=width" json:"width,omitempty"`
  1352. FirstFrameLength *uint32 `protobuf:"varint,4,opt,name=firstFrameLength" json:"firstFrameLength,omitempty"`
  1353. FirstFrameSidecar []byte `protobuf:"bytes,5,opt,name=firstFrameSidecar" json:"firstFrameSidecar,omitempty"`
  1354. MustacheText *string `protobuf:"bytes,6,opt,name=mustacheText" json:"mustacheText,omitempty"`
  1355. IsThirdParty *bool `protobuf:"varint,7,opt,name=isThirdParty" json:"isThirdParty,omitempty"`
  1356. ReceiverFetchID *string `protobuf:"bytes,8,opt,name=receiverFetchID" json:"receiverFetchID,omitempty"`
  1357. AccessibilityLabel *string `protobuf:"bytes,9,opt,name=accessibilityLabel" json:"accessibilityLabel,omitempty"`
  1358. unknownFields protoimpl.UnknownFields
  1359. sizeCache protoimpl.SizeCache
  1360. }
  1361. func (x *StickerTransport_Ancillary) Reset() {
  1362. *x = StickerTransport_Ancillary{}
  1363. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[21]
  1364. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1365. ms.StoreMessageInfo(mi)
  1366. }
  1367. func (x *StickerTransport_Ancillary) String() string {
  1368. return protoimpl.X.MessageStringOf(x)
  1369. }
  1370. func (*StickerTransport_Ancillary) ProtoMessage() {}
  1371. func (x *StickerTransport_Ancillary) ProtoReflect() protoreflect.Message {
  1372. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[21]
  1373. if x != nil {
  1374. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1375. if ms.LoadMessageInfo() == nil {
  1376. ms.StoreMessageInfo(mi)
  1377. }
  1378. return ms
  1379. }
  1380. return mi.MessageOf(x)
  1381. }
  1382. // Deprecated: Use StickerTransport_Ancillary.ProtoReflect.Descriptor instead.
  1383. func (*StickerTransport_Ancillary) Descriptor() ([]byte, []int) {
  1384. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5, 0}
  1385. }
  1386. func (x *StickerTransport_Ancillary) GetPageCount() uint32 {
  1387. if x != nil && x.PageCount != nil {
  1388. return *x.PageCount
  1389. }
  1390. return 0
  1391. }
  1392. func (x *StickerTransport_Ancillary) GetHeight() uint32 {
  1393. if x != nil && x.Height != nil {
  1394. return *x.Height
  1395. }
  1396. return 0
  1397. }
  1398. func (x *StickerTransport_Ancillary) GetWidth() uint32 {
  1399. if x != nil && x.Width != nil {
  1400. return *x.Width
  1401. }
  1402. return 0
  1403. }
  1404. func (x *StickerTransport_Ancillary) GetFirstFrameLength() uint32 {
  1405. if x != nil && x.FirstFrameLength != nil {
  1406. return *x.FirstFrameLength
  1407. }
  1408. return 0
  1409. }
  1410. func (x *StickerTransport_Ancillary) GetFirstFrameSidecar() []byte {
  1411. if x != nil {
  1412. return x.FirstFrameSidecar
  1413. }
  1414. return nil
  1415. }
  1416. func (x *StickerTransport_Ancillary) GetMustacheText() string {
  1417. if x != nil && x.MustacheText != nil {
  1418. return *x.MustacheText
  1419. }
  1420. return ""
  1421. }
  1422. func (x *StickerTransport_Ancillary) GetIsThirdParty() bool {
  1423. if x != nil && x.IsThirdParty != nil {
  1424. return *x.IsThirdParty
  1425. }
  1426. return false
  1427. }
  1428. func (x *StickerTransport_Ancillary) GetReceiverFetchID() string {
  1429. if x != nil && x.ReceiverFetchID != nil {
  1430. return *x.ReceiverFetchID
  1431. }
  1432. return ""
  1433. }
  1434. func (x *StickerTransport_Ancillary) GetAccessibilityLabel() string {
  1435. if x != nil && x.AccessibilityLabel != nil {
  1436. return *x.AccessibilityLabel
  1437. }
  1438. return ""
  1439. }
  1440. type StickerTransport_Integral struct {
  1441. state protoimpl.MessageState `protogen:"open.v1"`
  1442. Transport *WAMediaTransport `protobuf:"bytes,1,opt,name=transport" json:"transport,omitempty"`
  1443. IsAnimated *bool `protobuf:"varint,2,opt,name=isAnimated" json:"isAnimated,omitempty"`
  1444. ReceiverFetchID *string `protobuf:"bytes,3,opt,name=receiverFetchID" json:"receiverFetchID,omitempty"`
  1445. unknownFields protoimpl.UnknownFields
  1446. sizeCache protoimpl.SizeCache
  1447. }
  1448. func (x *StickerTransport_Integral) Reset() {
  1449. *x = StickerTransport_Integral{}
  1450. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[22]
  1451. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1452. ms.StoreMessageInfo(mi)
  1453. }
  1454. func (x *StickerTransport_Integral) String() string {
  1455. return protoimpl.X.MessageStringOf(x)
  1456. }
  1457. func (*StickerTransport_Integral) ProtoMessage() {}
  1458. func (x *StickerTransport_Integral) ProtoReflect() protoreflect.Message {
  1459. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[22]
  1460. if x != nil {
  1461. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1462. if ms.LoadMessageInfo() == nil {
  1463. ms.StoreMessageInfo(mi)
  1464. }
  1465. return ms
  1466. }
  1467. return mi.MessageOf(x)
  1468. }
  1469. // Deprecated: Use StickerTransport_Integral.ProtoReflect.Descriptor instead.
  1470. func (*StickerTransport_Integral) Descriptor() ([]byte, []int) {
  1471. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{5, 1}
  1472. }
  1473. func (x *StickerTransport_Integral) GetTransport() *WAMediaTransport {
  1474. if x != nil {
  1475. return x.Transport
  1476. }
  1477. return nil
  1478. }
  1479. func (x *StickerTransport_Integral) GetIsAnimated() bool {
  1480. if x != nil && x.IsAnimated != nil {
  1481. return *x.IsAnimated
  1482. }
  1483. return false
  1484. }
  1485. func (x *StickerTransport_Integral) GetReceiverFetchID() string {
  1486. if x != nil && x.ReceiverFetchID != nil {
  1487. return *x.ReceiverFetchID
  1488. }
  1489. return ""
  1490. }
  1491. type ContactTransport_Ancillary struct {
  1492. state protoimpl.MessageState `protogen:"open.v1"`
  1493. DisplayName *string `protobuf:"bytes,1,opt,name=displayName" json:"displayName,omitempty"`
  1494. unknownFields protoimpl.UnknownFields
  1495. sizeCache protoimpl.SizeCache
  1496. }
  1497. func (x *ContactTransport_Ancillary) Reset() {
  1498. *x = ContactTransport_Ancillary{}
  1499. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[23]
  1500. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1501. ms.StoreMessageInfo(mi)
  1502. }
  1503. func (x *ContactTransport_Ancillary) String() string {
  1504. return protoimpl.X.MessageStringOf(x)
  1505. }
  1506. func (*ContactTransport_Ancillary) ProtoMessage() {}
  1507. func (x *ContactTransport_Ancillary) ProtoReflect() protoreflect.Message {
  1508. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[23]
  1509. if x != nil {
  1510. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1511. if ms.LoadMessageInfo() == nil {
  1512. ms.StoreMessageInfo(mi)
  1513. }
  1514. return ms
  1515. }
  1516. return mi.MessageOf(x)
  1517. }
  1518. // Deprecated: Use ContactTransport_Ancillary.ProtoReflect.Descriptor instead.
  1519. func (*ContactTransport_Ancillary) Descriptor() ([]byte, []int) {
  1520. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6, 0}
  1521. }
  1522. func (x *ContactTransport_Ancillary) GetDisplayName() string {
  1523. if x != nil && x.DisplayName != nil {
  1524. return *x.DisplayName
  1525. }
  1526. return ""
  1527. }
  1528. type ContactTransport_Integral struct {
  1529. state protoimpl.MessageState `protogen:"open.v1"`
  1530. // Types that are valid to be assigned to Contact:
  1531. //
  1532. // *ContactTransport_Integral_Vcard
  1533. // *ContactTransport_Integral_DownloadableVcard
  1534. Contact isContactTransport_Integral_Contact `protobuf_oneof:"contact"`
  1535. unknownFields protoimpl.UnknownFields
  1536. sizeCache protoimpl.SizeCache
  1537. }
  1538. func (x *ContactTransport_Integral) Reset() {
  1539. *x = ContactTransport_Integral{}
  1540. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[24]
  1541. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1542. ms.StoreMessageInfo(mi)
  1543. }
  1544. func (x *ContactTransport_Integral) String() string {
  1545. return protoimpl.X.MessageStringOf(x)
  1546. }
  1547. func (*ContactTransport_Integral) ProtoMessage() {}
  1548. func (x *ContactTransport_Integral) ProtoReflect() protoreflect.Message {
  1549. mi := &file_waMediaTransport_WAMediaTransport_proto_msgTypes[24]
  1550. if x != nil {
  1551. ms := protoimpl.X.MessageStateOf(protoimpl.Pointer(x))
  1552. if ms.LoadMessageInfo() == nil {
  1553. ms.StoreMessageInfo(mi)
  1554. }
  1555. return ms
  1556. }
  1557. return mi.MessageOf(x)
  1558. }
  1559. // Deprecated: Use ContactTransport_Integral.ProtoReflect.Descriptor instead.
  1560. func (*ContactTransport_Integral) Descriptor() ([]byte, []int) {
  1561. return file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP(), []int{6, 1}
  1562. }
  1563. func (x *ContactTransport_Integral) GetContact() isContactTransport_Integral_Contact {
  1564. if x != nil {
  1565. return x.Contact
  1566. }
  1567. return nil
  1568. }
  1569. func (x *ContactTransport_Integral) GetVcard() string {
  1570. if x != nil {
  1571. if x, ok := x.Contact.(*ContactTransport_Integral_Vcard); ok {
  1572. return x.Vcard
  1573. }
  1574. }
  1575. return ""
  1576. }
  1577. func (x *ContactTransport_Integral) GetDownloadableVcard() *WAMediaTransport {
  1578. if x != nil {
  1579. if x, ok := x.Contact.(*ContactTransport_Integral_DownloadableVcard); ok {
  1580. return x.DownloadableVcard
  1581. }
  1582. }
  1583. return nil
  1584. }
  1585. type isContactTransport_Integral_Contact interface {
  1586. isContactTransport_Integral_Contact()
  1587. }
  1588. type ContactTransport_Integral_Vcard struct {
  1589. Vcard string `protobuf:"bytes,1,opt,name=vcard,oneof"`
  1590. }
  1591. type ContactTransport_Integral_DownloadableVcard struct {
  1592. DownloadableVcard *WAMediaTransport `protobuf:"bytes,2,opt,name=downloadableVcard,oneof"`
  1593. }
  1594. func (*ContactTransport_Integral_Vcard) isContactTransport_Integral_Contact() {}
  1595. func (*ContactTransport_Integral_DownloadableVcard) isContactTransport_Integral_Contact() {}
  1596. var File_waMediaTransport_WAMediaTransport_proto protoreflect.FileDescriptor
  1597. const file_waMediaTransport_WAMediaTransport_proto_rawDesc = "" +
  1598. "\n" +
  1599. "'waMediaTransport/WAMediaTransport.proto\x12\x10WAMediaTransport\x1a\x17waCommon/WACommon.proto\"\xfb\b\n" +
  1600. "\x10WAMediaTransport\x12G\n" +
  1601. "\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.WAMediaTransport.IntegralR\bintegral\x12J\n" +
  1602. "\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.WAMediaTransport.AncillaryR\tancillary\x1a\x94\x06\n" +
  1603. "\tAncillary\x12\x1e\n" +
  1604. "\n" +
  1605. "fileLength\x18\x01 \x01(\x04R\n" +
  1606. "fileLength\x12\x1a\n" +
  1607. "\bmimetype\x18\x02 \x01(\tR\bmimetype\x12T\n" +
  1608. "\tthumbnail\x18\x03 \x01(\v26.WAMediaTransport.WAMediaTransport.Ancillary.ThumbnailR\tthumbnail\x12\x1a\n" +
  1609. "\bobjectID\x18\x04 \x01(\tR\bobjectID\x1a\xd8\x04\n" +
  1610. "\tThumbnail\x12$\n" +
  1611. "\rJPEGThumbnail\x18\x01 \x01(\fR\rJPEGThumbnail\x12\x82\x01\n" +
  1612. "\x15downloadableThumbnail\x18\x02 \x01(\v2L.WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnailR\x15downloadableThumbnail\x12&\n" +
  1613. "\x0ethumbnailWidth\x18\x03 \x01(\rR\x0ethumbnailWidth\x12(\n" +
  1614. "\x0fthumbnailHeight\x18\x04 \x01(\rR\x0fthumbnailHeight\x1a\xcd\x02\n" +
  1615. "\x15DownloadableThumbnail\x12\x1e\n" +
  1616. "\n" +
  1617. "fileSHA256\x18\x01 \x01(\fR\n" +
  1618. "fileSHA256\x12$\n" +
  1619. "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
  1620. "\n" +
  1621. "directPath\x18\x03 \x01(\tR\n" +
  1622. "directPath\x12\x1a\n" +
  1623. "\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" +
  1624. "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" +
  1625. "\bobjectID\x18\x06 \x01(\tR\bobjectID\x124\n" +
  1626. "\x15thumbnailScansSidecar\x18\a \x01(\fR\x15thumbnailScansSidecar\x122\n" +
  1627. "\x14thumbnailScanLengths\x18\b \x03(\rR\x14thumbnailScanLengths\x1a\xba\x01\n" +
  1628. "\bIntegral\x12\x1e\n" +
  1629. "\n" +
  1630. "fileSHA256\x18\x01 \x01(\fR\n" +
  1631. "fileSHA256\x12\x1a\n" +
  1632. "\bmediaKey\x18\x02 \x01(\fR\bmediaKey\x12$\n" +
  1633. "\rfileEncSHA256\x18\x03 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
  1634. "\n" +
  1635. "directPath\x18\x04 \x01(\tR\n" +
  1636. "directPath\x12,\n" +
  1637. "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\"\x88\x05\n" +
  1638. "\x0eImageTransport\x12E\n" +
  1639. "\bintegral\x18\x01 \x01(\v2).WAMediaTransport.ImageTransport.IntegralR\bintegral\x12H\n" +
  1640. "\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.ImageTransport.AncillaryR\tancillary\x1a\x96\x03\n" +
  1641. "\tAncillary\x12\x16\n" +
  1642. "\x06height\x18\x01 \x01(\rR\x06height\x12\x14\n" +
  1643. "\x05width\x18\x02 \x01(\rR\x05width\x12\"\n" +
  1644. "\fscansSidecar\x18\x03 \x01(\fR\fscansSidecar\x12 \n" +
  1645. "\vscanLengths\x18\x04 \x03(\rR\vscanLengths\x122\n" +
  1646. "\x14midQualityFileSHA256\x18\x05 \x01(\fR\x14midQualityFileSHA256\x12I\n" +
  1647. "\x06hdType\x18\x06 \x01(\x0e21.WAMediaTransport.ImageTransport.Ancillary.HdTypeR\x06hdType\x128\n" +
  1648. "\x15memoriesConceptScores\x18\a \x03(\x02B\x02\x10\x01R\x15memoriesConceptScores\x122\n" +
  1649. "\x12memoriesConceptIDs\x18\b \x03(\rB\x02\x10\x01R\x12memoriesConceptIDs\"(\n" +
  1650. "\x06HdType\x12\b\n" +
  1651. "\x04NONE\x10\x00\x12\t\n" +
  1652. "\x05LQ_4K\x10\x01\x12\t\n" +
  1653. "\x05HQ_4K\x10\x02\x1aL\n" +
  1654. "\bIntegral\x12@\n" +
  1655. "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x85\x05\n" +
  1656. "\x0eVideoTransport\x12E\n" +
  1657. "\bintegral\x18\x01 \x01(\v2).WAMediaTransport.VideoTransport.IntegralR\bintegral\x12H\n" +
  1658. "\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.VideoTransport.AncillaryR\tancillary\x1a\x93\x03\n" +
  1659. "\tAncillary\x12\x18\n" +
  1660. "\aseconds\x18\x01 \x01(\rR\aseconds\x12/\n" +
  1661. "\acaption\x18\x02 \x01(\v2\x15.WACommon.MessageTextR\acaption\x12 \n" +
  1662. "\vgifPlayback\x18\x03 \x01(\bR\vgifPlayback\x12\x16\n" +
  1663. "\x06height\x18\x04 \x01(\rR\x06height\x12\x14\n" +
  1664. "\x05width\x18\x05 \x01(\rR\x05width\x12\x18\n" +
  1665. "\asidecar\x18\x06 \x01(\fR\asidecar\x12^\n" +
  1666. "\x0egifAttribution\x18\a \x01(\x0e26.WAMediaTransport.VideoTransport.Ancillary.AttributionR\x0egifAttribution\x12.\n" +
  1667. "\x12accessibilityLabel\x18\b \x01(\tR\x12accessibilityLabel\x12\x12\n" +
  1668. "\x04isHd\x18\t \x01(\bR\x04isHd\"-\n" +
  1669. "\vAttribution\x12\b\n" +
  1670. "\x04NONE\x10\x00\x12\t\n" +
  1671. "\x05GIPHY\x10\x01\x12\t\n" +
  1672. "\x05TENOR\x10\x02\x1aL\n" +
  1673. "\bIntegral\x12@\n" +
  1674. "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x8e\t\n" +
  1675. "\x0eAudioTransport\x12E\n" +
  1676. "\bintegral\x18\x01 \x01(\v2).WAMediaTransport.AudioTransport.IntegralR\bintegral\x12H\n" +
  1677. "\tancillary\x18\x02 \x01(\v2*.WAMediaTransport.AudioTransport.AncillaryR\tancillary\x1a\x9c\x06\n" +
  1678. "\tAncillary\x12\x18\n" +
  1679. "\aseconds\x18\x01 \x01(\rR\aseconds\x12X\n" +
  1680. "\vavatarAudio\x18\x02 \x01(\v26.WAMediaTransport.AudioTransport.Ancillary.AvatarAudioR\vavatarAudio\x12\"\n" +
  1681. "\fwaveformData\x18\x03 \x01(\tR\fwaveformData\x12\x1a\n" +
  1682. "\bwaveform\x18\x04 \x01(\fR\bwaveform\x1a\xda\x04\n" +
  1683. "\vAvatarAudio\x12\x16\n" +
  1684. "\x06poseID\x18\x01 \x01(\rR\x06poseID\x12\x7f\n" +
  1685. "\x10avatarAnimations\x18\x02 \x03(\v2S.WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimationsR\x10avatarAnimations\x1a\xd9\x02\n" +
  1686. "\x1cDownloadableAvatarAnimations\x12\x1e\n" +
  1687. "\n" +
  1688. "fileSHA256\x18\x01 \x01(\fR\n" +
  1689. "fileSHA256\x12$\n" +
  1690. "\rfileEncSHA256\x18\x02 \x01(\fR\rfileEncSHA256\x12\x1e\n" +
  1691. "\n" +
  1692. "directPath\x18\x03 \x01(\tR\n" +
  1693. "directPath\x12\x1a\n" +
  1694. "\bmediaKey\x18\x04 \x01(\fR\bmediaKey\x12,\n" +
  1695. "\x11mediaKeyTimestamp\x18\x05 \x01(\x03R\x11mediaKeyTimestamp\x12\x1a\n" +
  1696. "\bobjectID\x18\x06 \x01(\tR\bobjectID\x12m\n" +
  1697. "\x0eanimationsType\x18\a \x01(\x0e2E.WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsTypeR\x0eanimationsType\"V\n" +
  1698. "\x0eAnimationsType\x12\r\n" +
  1699. "\tTALKING_A\x10\x00\x12\n" +
  1700. "\n" +
  1701. "\x06IDLE_A\x10\x01\x12\r\n" +
  1702. "\tTALKING_B\x10\x02\x12\n" +
  1703. "\n" +
  1704. "\x06IDLE_B\x10\x03\x12\x0e\n" +
  1705. "\n" +
  1706. "BACKGROUND\x10\x04\x1a\xcb\x01\n" +
  1707. "\bIntegral\x12@\n" +
  1708. "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\x12W\n" +
  1709. "\vaudioFormat\x18\x02 \x01(\x0e25.WAMediaTransport.AudioTransport.Integral.AudioFormatR\vaudioFormat\"$\n" +
  1710. "\vAudioFormat\x12\v\n" +
  1711. "\aUNKNOWN\x10\x00\x12\b\n" +
  1712. "\x04OPUS\x10\x01\"\xa3\x02\n" +
  1713. "\x11DocumentTransport\x12H\n" +
  1714. "\bintegral\x18\x01 \x01(\v2,.WAMediaTransport.DocumentTransport.IntegralR\bintegral\x12K\n" +
  1715. "\tancillary\x18\x02 \x01(\v2-.WAMediaTransport.DocumentTransport.AncillaryR\tancillary\x1a)\n" +
  1716. "\tAncillary\x12\x1c\n" +
  1717. "\tpageCount\x18\x01 \x01(\rR\tpageCount\x1aL\n" +
  1718. "\bIntegral\x12@\n" +
  1719. "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\"\x96\x05\n" +
  1720. "\x10StickerTransport\x12G\n" +
  1721. "\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.StickerTransport.IntegralR\bintegral\x12J\n" +
  1722. "\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.StickerTransport.AncillaryR\tancillary\x1a\xd3\x02\n" +
  1723. "\tAncillary\x12\x1c\n" +
  1724. "\tpageCount\x18\x01 \x01(\rR\tpageCount\x12\x16\n" +
  1725. "\x06height\x18\x02 \x01(\rR\x06height\x12\x14\n" +
  1726. "\x05width\x18\x03 \x01(\rR\x05width\x12*\n" +
  1727. "\x10firstFrameLength\x18\x04 \x01(\rR\x10firstFrameLength\x12,\n" +
  1728. "\x11firstFrameSidecar\x18\x05 \x01(\fR\x11firstFrameSidecar\x12\"\n" +
  1729. "\fmustacheText\x18\x06 \x01(\tR\fmustacheText\x12\"\n" +
  1730. "\fisThirdParty\x18\a \x01(\bR\fisThirdParty\x12(\n" +
  1731. "\x0freceiverFetchID\x18\b \x01(\tR\x0freceiverFetchID\x12.\n" +
  1732. "\x12accessibilityLabel\x18\t \x01(\tR\x12accessibilityLabel\x1a\x96\x01\n" +
  1733. "\bIntegral\x12@\n" +
  1734. "\ttransport\x18\x01 \x01(\v2\".WAMediaTransport.WAMediaTransportR\ttransport\x12\x1e\n" +
  1735. "\n" +
  1736. "isAnimated\x18\x02 \x01(\bR\n" +
  1737. "isAnimated\x12(\n" +
  1738. "\x0freceiverFetchID\x18\x03 \x01(\tR\x0freceiverFetchID\"\xda\x02\n" +
  1739. "\x10ContactTransport\x12G\n" +
  1740. "\bintegral\x18\x01 \x01(\v2+.WAMediaTransport.ContactTransport.IntegralR\bintegral\x12J\n" +
  1741. "\tancillary\x18\x02 \x01(\v2,.WAMediaTransport.ContactTransport.AncillaryR\tancillary\x1a-\n" +
  1742. "\tAncillary\x12 \n" +
  1743. "\vdisplayName\x18\x01 \x01(\tR\vdisplayName\x1a\x81\x01\n" +
  1744. "\bIntegral\x12\x16\n" +
  1745. "\x05vcard\x18\x01 \x01(\tH\x00R\x05vcard\x12R\n" +
  1746. "\x11downloadableVcard\x18\x02 \x01(\v2\".WAMediaTransport.WAMediaTransportH\x00R\x11downloadableVcardB\t\n" +
  1747. "\acontactB,Z*git.bobomao.top/joey/testwh/proto/waMediaTransport"
  1748. var (
  1749. file_waMediaTransport_WAMediaTransport_proto_rawDescOnce sync.Once
  1750. file_waMediaTransport_WAMediaTransport_proto_rawDescData []byte
  1751. )
  1752. func file_waMediaTransport_WAMediaTransport_proto_rawDescGZIP() []byte {
  1753. file_waMediaTransport_WAMediaTransport_proto_rawDescOnce.Do(func() {
  1754. file_waMediaTransport_WAMediaTransport_proto_rawDescData = protoimpl.X.CompressGZIP(unsafe.Slice(unsafe.StringData(file_waMediaTransport_WAMediaTransport_proto_rawDesc), len(file_waMediaTransport_WAMediaTransport_proto_rawDesc)))
  1755. })
  1756. return file_waMediaTransport_WAMediaTransport_proto_rawDescData
  1757. }
  1758. var file_waMediaTransport_WAMediaTransport_proto_enumTypes = make([]protoimpl.EnumInfo, 4)
  1759. var file_waMediaTransport_WAMediaTransport_proto_msgTypes = make([]protoimpl.MessageInfo, 25)
  1760. var file_waMediaTransport_WAMediaTransport_proto_goTypes = []any{
  1761. (ImageTransport_Ancillary_HdType)(0), // 0: WAMediaTransport.ImageTransport.Ancillary.HdType
  1762. (VideoTransport_Ancillary_Attribution)(0), // 1: WAMediaTransport.VideoTransport.Ancillary.Attribution
  1763. (AudioTransport_Ancillary_AvatarAudio_AnimationsType)(0), // 2: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsType
  1764. (AudioTransport_Integral_AudioFormat)(0), // 3: WAMediaTransport.AudioTransport.Integral.AudioFormat
  1765. (*WAMediaTransport)(nil), // 4: WAMediaTransport.WAMediaTransport
  1766. (*ImageTransport)(nil), // 5: WAMediaTransport.ImageTransport
  1767. (*VideoTransport)(nil), // 6: WAMediaTransport.VideoTransport
  1768. (*AudioTransport)(nil), // 7: WAMediaTransport.AudioTransport
  1769. (*DocumentTransport)(nil), // 8: WAMediaTransport.DocumentTransport
  1770. (*StickerTransport)(nil), // 9: WAMediaTransport.StickerTransport
  1771. (*ContactTransport)(nil), // 10: WAMediaTransport.ContactTransport
  1772. (*WAMediaTransport_Ancillary)(nil), // 11: WAMediaTransport.WAMediaTransport.Ancillary
  1773. (*WAMediaTransport_Integral)(nil), // 12: WAMediaTransport.WAMediaTransport.Integral
  1774. (*WAMediaTransport_Ancillary_Thumbnail)(nil), // 13: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail
  1775. (*WAMediaTransport_Ancillary_Thumbnail_DownloadableThumbnail)(nil), // 14: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnail
  1776. (*ImageTransport_Ancillary)(nil), // 15: WAMediaTransport.ImageTransport.Ancillary
  1777. (*ImageTransport_Integral)(nil), // 16: WAMediaTransport.ImageTransport.Integral
  1778. (*VideoTransport_Ancillary)(nil), // 17: WAMediaTransport.VideoTransport.Ancillary
  1779. (*VideoTransport_Integral)(nil), // 18: WAMediaTransport.VideoTransport.Integral
  1780. (*AudioTransport_Ancillary)(nil), // 19: WAMediaTransport.AudioTransport.Ancillary
  1781. (*AudioTransport_Integral)(nil), // 20: WAMediaTransport.AudioTransport.Integral
  1782. (*AudioTransport_Ancillary_AvatarAudio)(nil), // 21: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio
  1783. (*AudioTransport_Ancillary_AvatarAudio_DownloadableAvatarAnimations)(nil), // 22: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations
  1784. (*DocumentTransport_Ancillary)(nil), // 23: WAMediaTransport.DocumentTransport.Ancillary
  1785. (*DocumentTransport_Integral)(nil), // 24: WAMediaTransport.DocumentTransport.Integral
  1786. (*StickerTransport_Ancillary)(nil), // 25: WAMediaTransport.StickerTransport.Ancillary
  1787. (*StickerTransport_Integral)(nil), // 26: WAMediaTransport.StickerTransport.Integral
  1788. (*ContactTransport_Ancillary)(nil), // 27: WAMediaTransport.ContactTransport.Ancillary
  1789. (*ContactTransport_Integral)(nil), // 28: WAMediaTransport.ContactTransport.Integral
  1790. (*waCommon.MessageText)(nil), // 29: WACommon.MessageText
  1791. }
  1792. var file_waMediaTransport_WAMediaTransport_proto_depIdxs = []int32{
  1793. 12, // 0: WAMediaTransport.WAMediaTransport.integral:type_name -> WAMediaTransport.WAMediaTransport.Integral
  1794. 11, // 1: WAMediaTransport.WAMediaTransport.ancillary:type_name -> WAMediaTransport.WAMediaTransport.Ancillary
  1795. 16, // 2: WAMediaTransport.ImageTransport.integral:type_name -> WAMediaTransport.ImageTransport.Integral
  1796. 15, // 3: WAMediaTransport.ImageTransport.ancillary:type_name -> WAMediaTransport.ImageTransport.Ancillary
  1797. 18, // 4: WAMediaTransport.VideoTransport.integral:type_name -> WAMediaTransport.VideoTransport.Integral
  1798. 17, // 5: WAMediaTransport.VideoTransport.ancillary:type_name -> WAMediaTransport.VideoTransport.Ancillary
  1799. 20, // 6: WAMediaTransport.AudioTransport.integral:type_name -> WAMediaTransport.AudioTransport.Integral
  1800. 19, // 7: WAMediaTransport.AudioTransport.ancillary:type_name -> WAMediaTransport.AudioTransport.Ancillary
  1801. 24, // 8: WAMediaTransport.DocumentTransport.integral:type_name -> WAMediaTransport.DocumentTransport.Integral
  1802. 23, // 9: WAMediaTransport.DocumentTransport.ancillary:type_name -> WAMediaTransport.DocumentTransport.Ancillary
  1803. 26, // 10: WAMediaTransport.StickerTransport.integral:type_name -> WAMediaTransport.StickerTransport.Integral
  1804. 25, // 11: WAMediaTransport.StickerTransport.ancillary:type_name -> WAMediaTransport.StickerTransport.Ancillary
  1805. 28, // 12: WAMediaTransport.ContactTransport.integral:type_name -> WAMediaTransport.ContactTransport.Integral
  1806. 27, // 13: WAMediaTransport.ContactTransport.ancillary:type_name -> WAMediaTransport.ContactTransport.Ancillary
  1807. 13, // 14: WAMediaTransport.WAMediaTransport.Ancillary.thumbnail:type_name -> WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail
  1808. 14, // 15: WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.downloadableThumbnail:type_name -> WAMediaTransport.WAMediaTransport.Ancillary.Thumbnail.DownloadableThumbnail
  1809. 0, // 16: WAMediaTransport.ImageTransport.Ancillary.hdType:type_name -> WAMediaTransport.ImageTransport.Ancillary.HdType
  1810. 4, // 17: WAMediaTransport.ImageTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
  1811. 29, // 18: WAMediaTransport.VideoTransport.Ancillary.caption:type_name -> WACommon.MessageText
  1812. 1, // 19: WAMediaTransport.VideoTransport.Ancillary.gifAttribution:type_name -> WAMediaTransport.VideoTransport.Ancillary.Attribution
  1813. 4, // 20: WAMediaTransport.VideoTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
  1814. 21, // 21: WAMediaTransport.AudioTransport.Ancillary.avatarAudio:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio
  1815. 4, // 22: WAMediaTransport.AudioTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
  1816. 3, // 23: WAMediaTransport.AudioTransport.Integral.audioFormat:type_name -> WAMediaTransport.AudioTransport.Integral.AudioFormat
  1817. 22, // 24: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.avatarAnimations:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations
  1818. 2, // 25: WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.DownloadableAvatarAnimations.animationsType:type_name -> WAMediaTransport.AudioTransport.Ancillary.AvatarAudio.AnimationsType
  1819. 4, // 26: WAMediaTransport.DocumentTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
  1820. 4, // 27: WAMediaTransport.StickerTransport.Integral.transport:type_name -> WAMediaTransport.WAMediaTransport
  1821. 4, // 28: WAMediaTransport.ContactTransport.Integral.downloadableVcard:type_name -> WAMediaTransport.WAMediaTransport
  1822. 29, // [29:29] is the sub-list for method output_type
  1823. 29, // [29:29] is the sub-list for method input_type
  1824. 29, // [29:29] is the sub-list for extension type_name
  1825. 29, // [29:29] is the sub-list for extension extendee
  1826. 0, // [0:29] is the sub-list for field type_name
  1827. }
  1828. func init() { file_waMediaTransport_WAMediaTransport_proto_init() }
  1829. func file_waMediaTransport_WAMediaTransport_proto_init() {
  1830. if File_waMediaTransport_WAMediaTransport_proto != nil {
  1831. return
  1832. }
  1833. file_waMediaTransport_WAMediaTransport_proto_msgTypes[24].OneofWrappers = []any{
  1834. (*ContactTransport_Integral_Vcard)(nil),
  1835. (*ContactTransport_Integral_DownloadableVcard)(nil),
  1836. }
  1837. type x struct{}
  1838. out := protoimpl.TypeBuilder{
  1839. File: protoimpl.DescBuilder{
  1840. GoPackagePath: reflect.TypeOf(x{}).PkgPath(),
  1841. RawDescriptor: unsafe.Slice(unsafe.StringData(file_waMediaTransport_WAMediaTransport_proto_rawDesc), len(file_waMediaTransport_WAMediaTransport_proto_rawDesc)),
  1842. NumEnums: 4,
  1843. NumMessages: 25,
  1844. NumExtensions: 0,
  1845. NumServices: 0,
  1846. },
  1847. GoTypes: file_waMediaTransport_WAMediaTransport_proto_goTypes,
  1848. DependencyIndexes: file_waMediaTransport_WAMediaTransport_proto_depIdxs,
  1849. EnumInfos: file_waMediaTransport_WAMediaTransport_proto_enumTypes,
  1850. MessageInfos: file_waMediaTransport_WAMediaTransport_proto_msgTypes,
  1851. }.Build()
  1852. File_waMediaTransport_WAMediaTransport_proto = out.File
  1853. file_waMediaTransport_WAMediaTransport_proto_goTypes = nil
  1854. file_waMediaTransport_WAMediaTransport_proto_depIdxs = nil
  1855. }