You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 

164 lines
6.6 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v0/enums/mime_type.proto
  3. package enums // import "google.golang.org/genproto/googleapis/ads/googleads/v0/enums"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. // Reference imports to suppress errors if they are not otherwise used.
  8. var _ = proto.Marshal
  9. var _ = fmt.Errorf
  10. var _ = math.Inf
  11. // This is a compile-time assertion to ensure that this generated file
  12. // is compatible with the proto package it is being compiled against.
  13. // A compilation error at this line likely means your copy of the
  14. // proto package needs to be updated.
  15. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  16. // The mime type
  17. type MimeTypeEnum_MimeType int32
  18. const (
  19. // The mime type has not been specified.
  20. MimeTypeEnum_UNSPECIFIED MimeTypeEnum_MimeType = 0
  21. // The received value is not known in this version.
  22. //
  23. // This is a response-only value.
  24. MimeTypeEnum_UNKNOWN MimeTypeEnum_MimeType = 1
  25. // MIME type of image/jpeg.
  26. MimeTypeEnum_IMAGE_JPEG MimeTypeEnum_MimeType = 2
  27. // MIME type of image/gif.
  28. MimeTypeEnum_IMAGE_GIF MimeTypeEnum_MimeType = 3
  29. // MIME type of image/png.
  30. MimeTypeEnum_IMAGE_PNG MimeTypeEnum_MimeType = 4
  31. // MIME type of application/x-shockwave-flash.
  32. MimeTypeEnum_FLASH MimeTypeEnum_MimeType = 5
  33. // MIME type of text/html.
  34. MimeTypeEnum_TEXT_HTML MimeTypeEnum_MimeType = 6
  35. // MIME type of application/pdf.
  36. MimeTypeEnum_PDF MimeTypeEnum_MimeType = 7
  37. // MIME type of application/msword.
  38. MimeTypeEnum_MSWORD MimeTypeEnum_MimeType = 8
  39. // MIME type of application/vnd.ms-excel.
  40. MimeTypeEnum_MSEXCEL MimeTypeEnum_MimeType = 9
  41. // MIME type of application/rtf.
  42. MimeTypeEnum_RTF MimeTypeEnum_MimeType = 10
  43. // MIME type of audio/wav.
  44. MimeTypeEnum_AUDIO_WAV MimeTypeEnum_MimeType = 11
  45. // MIME type of audio/mp3.
  46. MimeTypeEnum_AUDIO_MP3 MimeTypeEnum_MimeType = 12
  47. // MIME type of application/x-html5-ad-zip.
  48. MimeTypeEnum_HTML5_AD_ZIP MimeTypeEnum_MimeType = 13
  49. )
  50. var MimeTypeEnum_MimeType_name = map[int32]string{
  51. 0: "UNSPECIFIED",
  52. 1: "UNKNOWN",
  53. 2: "IMAGE_JPEG",
  54. 3: "IMAGE_GIF",
  55. 4: "IMAGE_PNG",
  56. 5: "FLASH",
  57. 6: "TEXT_HTML",
  58. 7: "PDF",
  59. 8: "MSWORD",
  60. 9: "MSEXCEL",
  61. 10: "RTF",
  62. 11: "AUDIO_WAV",
  63. 12: "AUDIO_MP3",
  64. 13: "HTML5_AD_ZIP",
  65. }
  66. var MimeTypeEnum_MimeType_value = map[string]int32{
  67. "UNSPECIFIED": 0,
  68. "UNKNOWN": 1,
  69. "IMAGE_JPEG": 2,
  70. "IMAGE_GIF": 3,
  71. "IMAGE_PNG": 4,
  72. "FLASH": 5,
  73. "TEXT_HTML": 6,
  74. "PDF": 7,
  75. "MSWORD": 8,
  76. "MSEXCEL": 9,
  77. "RTF": 10,
  78. "AUDIO_WAV": 11,
  79. "AUDIO_MP3": 12,
  80. "HTML5_AD_ZIP": 13,
  81. }
  82. func (x MimeTypeEnum_MimeType) String() string {
  83. return proto.EnumName(MimeTypeEnum_MimeType_name, int32(x))
  84. }
  85. func (MimeTypeEnum_MimeType) EnumDescriptor() ([]byte, []int) {
  86. return fileDescriptor_mime_type_9d68a7e3d7ca4947, []int{0, 0}
  87. }
  88. // Container for enum describing the mime types.
  89. type MimeTypeEnum struct {
  90. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  91. XXX_unrecognized []byte `json:"-"`
  92. XXX_sizecache int32 `json:"-"`
  93. }
  94. func (m *MimeTypeEnum) Reset() { *m = MimeTypeEnum{} }
  95. func (m *MimeTypeEnum) String() string { return proto.CompactTextString(m) }
  96. func (*MimeTypeEnum) ProtoMessage() {}
  97. func (*MimeTypeEnum) Descriptor() ([]byte, []int) {
  98. return fileDescriptor_mime_type_9d68a7e3d7ca4947, []int{0}
  99. }
  100. func (m *MimeTypeEnum) XXX_Unmarshal(b []byte) error {
  101. return xxx_messageInfo_MimeTypeEnum.Unmarshal(m, b)
  102. }
  103. func (m *MimeTypeEnum) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  104. return xxx_messageInfo_MimeTypeEnum.Marshal(b, m, deterministic)
  105. }
  106. func (dst *MimeTypeEnum) XXX_Merge(src proto.Message) {
  107. xxx_messageInfo_MimeTypeEnum.Merge(dst, src)
  108. }
  109. func (m *MimeTypeEnum) XXX_Size() int {
  110. return xxx_messageInfo_MimeTypeEnum.Size(m)
  111. }
  112. func (m *MimeTypeEnum) XXX_DiscardUnknown() {
  113. xxx_messageInfo_MimeTypeEnum.DiscardUnknown(m)
  114. }
  115. var xxx_messageInfo_MimeTypeEnum proto.InternalMessageInfo
  116. func init() {
  117. proto.RegisterType((*MimeTypeEnum)(nil), "google.ads.googleads.v0.enums.MimeTypeEnum")
  118. proto.RegisterEnum("google.ads.googleads.v0.enums.MimeTypeEnum_MimeType", MimeTypeEnum_MimeType_name, MimeTypeEnum_MimeType_value)
  119. }
  120. func init() {
  121. proto.RegisterFile("google/ads/googleads/v0/enums/mime_type.proto", fileDescriptor_mime_type_9d68a7e3d7ca4947)
  122. }
  123. var fileDescriptor_mime_type_9d68a7e3d7ca4947 = []byte{
  124. // 375 bytes of a gzipped FileDescriptorProto
  125. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xbd, 0xee, 0xda, 0x30,
  126. 0x14, 0xc5, 0x9b, 0xd0, 0x3f, 0x1f, 0x06, 0x5a, 0xcb, 0x3b, 0x03, 0xec, 0x75, 0x22, 0xa1, 0x2e,
  127. 0xee, 0x64, 0x88, 0x13, 0xd2, 0x92, 0x60, 0x91, 0x10, 0x10, 0x8a, 0x14, 0xd1, 0x26, 0x8a, 0x90,
  128. 0xc8, 0x87, 0x30, 0x20, 0xf1, 0x3a, 0x1d, 0xfb, 0x28, 0xed, 0x2b, 0x74, 0xea, 0xd8, 0xa7, 0xa8,
  129. 0x9c, 0x34, 0x30, 0xb5, 0x8b, 0x75, 0xee, 0x3d, 0x3f, 0x5f, 0xdb, 0xc7, 0xe0, 0x5d, 0x5a, 0x14,
  130. 0xe9, 0x29, 0xd1, 0x0e, 0xb1, 0xd0, 0x6a, 0x29, 0xd5, 0x4d, 0xd7, 0x92, 0xfc, 0x9a, 0x09, 0x2d,
  131. 0x3b, 0x66, 0x49, 0x74, 0xb9, 0x97, 0x09, 0x2e, 0xcf, 0xc5, 0xa5, 0x40, 0xa3, 0x9a, 0xc1, 0x87,
  132. 0x58, 0xe0, 0x07, 0x8e, 0x6f, 0x3a, 0xae, 0xf0, 0xc9, 0x4f, 0x05, 0x0c, 0x9c, 0x63, 0x96, 0xf8,
  133. 0xf7, 0x32, 0x61, 0xf9, 0x35, 0x9b, 0xfc, 0x50, 0x40, 0xb7, 0x69, 0xa0, 0xb7, 0xa0, 0xbf, 0x71,
  134. 0x3d, 0xce, 0xe6, 0xb6, 0x69, 0x33, 0x03, 0xbe, 0x42, 0x7d, 0xd0, 0xd9, 0xb8, 0x9f, 0xdc, 0xd5,
  135. 0xd6, 0x85, 0x0a, 0x7a, 0x03, 0x80, 0xed, 0x50, 0x8b, 0x45, 0x1f, 0x39, 0xb3, 0xa0, 0x8a, 0x86,
  136. 0xa0, 0x57, 0xd7, 0x96, 0x6d, 0xc2, 0xd6, 0xb3, 0xe4, 0xae, 0x05, 0x5f, 0xa3, 0x1e, 0x78, 0x31,
  137. 0x97, 0xd4, 0x5b, 0xc0, 0x17, 0xe9, 0xf8, 0x6c, 0xe7, 0x47, 0x0b, 0xdf, 0x59, 0xc2, 0x36, 0xea,
  138. 0x80, 0x16, 0x37, 0x4c, 0xd8, 0x41, 0x00, 0xb4, 0x1d, 0x6f, 0xbb, 0x5a, 0x1b, 0xb0, 0x2b, 0x4f,
  139. 0x72, 0x3c, 0xb6, 0x9b, 0xb3, 0x25, 0xec, 0x49, 0x62, 0xed, 0x9b, 0x10, 0xc8, 0x9d, 0x74, 0x63,
  140. 0xd8, 0xab, 0x68, 0x4b, 0x03, 0xd8, 0x7f, 0x96, 0x0e, 0x9f, 0xc2, 0x01, 0x82, 0x60, 0x20, 0x47,
  141. 0xbe, 0x8f, 0xa8, 0x11, 0xed, 0x6d, 0x0e, 0x87, 0xb3, 0x5f, 0x0a, 0x18, 0x7f, 0x29, 0x32, 0xfc,
  142. 0xdf, 0x10, 0x66, 0xc3, 0xe6, 0xc1, 0x5c, 0x46, 0xc6, 0x95, 0xfd, 0xec, 0x2f, 0x9f, 0x16, 0xa7,
  143. 0x43, 0x9e, 0xe2, 0xe2, 0x9c, 0x6a, 0x69, 0x92, 0x57, 0x81, 0x36, 0x99, 0x97, 0x47, 0xf1, 0x8f,
  144. 0x2f, 0xf8, 0x50, 0xad, 0x5f, 0xd5, 0x96, 0x45, 0xe9, 0x37, 0x75, 0x64, 0xd5, 0xa3, 0x68, 0x2c,
  145. 0x70, 0x2d, 0xa5, 0x0a, 0x74, 0x2c, 0xd3, 0x16, 0xdf, 0x1b, 0x3f, 0xa4, 0xb1, 0x08, 0x1f, 0x7e,
  146. 0x18, 0xe8, 0x61, 0xe5, 0xff, 0x56, 0xc7, 0x75, 0x93, 0x10, 0x1a, 0x0b, 0x42, 0x1e, 0x04, 0x21,
  147. 0x81, 0x4e, 0x48, 0xc5, 0x7c, 0x6e, 0x57, 0x17, 0x9b, 0xfe, 0x09, 0x00, 0x00, 0xff, 0xff, 0xc7,
  148. 0xb3, 0xac, 0x09, 0x1a, 0x02, 0x00, 0x00,
  149. }