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.
 
 
 

205 lines
12 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v1/errors/conversion_upload_error.proto
  3. package errors // import "google.golang.org/genproto/googleapis/ads/googleads/v1/errors"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import _ "google.golang.org/genproto/googleapis/api/annotations"
  8. // Reference imports to suppress errors if they are not otherwise used.
  9. var _ = proto.Marshal
  10. var _ = fmt.Errorf
  11. var _ = math.Inf
  12. // This is a compile-time assertion to ensure that this generated file
  13. // is compatible with the proto package it is being compiled against.
  14. // A compilation error at this line likely means your copy of the
  15. // proto package needs to be updated.
  16. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  17. // Enum describing possible conversion upload errors.
  18. type ConversionUploadErrorEnum_ConversionUploadError int32
  19. const (
  20. // Enum unspecified.
  21. ConversionUploadErrorEnum_UNSPECIFIED ConversionUploadErrorEnum_ConversionUploadError = 0
  22. // The received error code is not known in this version.
  23. ConversionUploadErrorEnum_UNKNOWN ConversionUploadErrorEnum_ConversionUploadError = 1
  24. // The request contained more than 2000 conversions.
  25. ConversionUploadErrorEnum_TOO_MANY_CONVERSIONS_IN_REQUEST ConversionUploadErrorEnum_ConversionUploadError = 2
  26. // The specified gclid could not be decoded.
  27. ConversionUploadErrorEnum_UNPARSEABLE_GCLID ConversionUploadErrorEnum_ConversionUploadError = 3
  28. // The specified conversion_date_time is before the event time
  29. // associated with the given gclid.
  30. ConversionUploadErrorEnum_CONVERSION_PRECEDES_GCLID ConversionUploadErrorEnum_ConversionUploadError = 4
  31. // The click associated with the given gclid is either too old to be
  32. // imported or occurred outside of the click through lookback window for the
  33. // specified conversion action.
  34. ConversionUploadErrorEnum_EXPIRED_GCLID ConversionUploadErrorEnum_ConversionUploadError = 5
  35. // The click associated with the given gclid occurred too recently. Please
  36. // try uploading again after 24 hours have passed since the click occurred.
  37. ConversionUploadErrorEnum_TOO_RECENT_GCLID ConversionUploadErrorEnum_ConversionUploadError = 6
  38. // The click associated with the given gclid could not be found in the
  39. // system. This can happen if Google Click IDs are collected for non Google
  40. // Ads clicks.
  41. ConversionUploadErrorEnum_GCLID_NOT_FOUND ConversionUploadErrorEnum_ConversionUploadError = 7
  42. // The click associated with the given gclid is owned by a customer
  43. // account that the uploading customer does not manage.
  44. ConversionUploadErrorEnum_UNAUTHORIZED_CUSTOMER ConversionUploadErrorEnum_ConversionUploadError = 8
  45. // No upload eligible conversion action that matches the provided
  46. // information can be found for the customer.
  47. ConversionUploadErrorEnum_INVALID_CONVERSION_ACTION ConversionUploadErrorEnum_ConversionUploadError = 9
  48. // The specified conversion action was created too recently.
  49. // Please try the upload again after 4-6 hours have passed since the
  50. // conversion action was created.
  51. ConversionUploadErrorEnum_TOO_RECENT_CONVERSION_ACTION ConversionUploadErrorEnum_ConversionUploadError = 10
  52. // The click associated with the given gclid does not contain conversion
  53. // tracking information.
  54. ConversionUploadErrorEnum_CONVERSION_TRACKING_NOT_ENABLED_AT_IMPRESSION_TIME ConversionUploadErrorEnum_ConversionUploadError = 11
  55. // The specified conversion action does not use an external attribution
  56. // model, but external_attribution_data was set.
  57. ConversionUploadErrorEnum_EXTERNAL_ATTRIBUTION_DATA_SET_FOR_NON_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION ConversionUploadErrorEnum_ConversionUploadError = 12
  58. // The specified conversion action uses an external attribution model, but
  59. // external_attribution_data or one of its contained fields was not set.
  60. // Both external_attribution_credit and external_attribution_model must be
  61. // set for externally attributed conversion actions.
  62. ConversionUploadErrorEnum_EXTERNAL_ATTRIBUTION_DATA_NOT_SET_FOR_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION ConversionUploadErrorEnum_ConversionUploadError = 13
  63. // Order IDs are not supported for conversion actions which use an external
  64. // attribution model.
  65. ConversionUploadErrorEnum_ORDER_ID_NOT_PERMITTED_FOR_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION ConversionUploadErrorEnum_ConversionUploadError = 14
  66. // A conversion with the same order id and conversion action combination
  67. // already exists in our system.
  68. ConversionUploadErrorEnum_ORDER_ID_ALREADY_IN_USE ConversionUploadErrorEnum_ConversionUploadError = 15
  69. // The request contained two or more conversions with the same order id and
  70. // conversion action combination.
  71. ConversionUploadErrorEnum_DUPLICATE_ORDER_ID ConversionUploadErrorEnum_ConversionUploadError = 16
  72. )
  73. var ConversionUploadErrorEnum_ConversionUploadError_name = map[int32]string{
  74. 0: "UNSPECIFIED",
  75. 1: "UNKNOWN",
  76. 2: "TOO_MANY_CONVERSIONS_IN_REQUEST",
  77. 3: "UNPARSEABLE_GCLID",
  78. 4: "CONVERSION_PRECEDES_GCLID",
  79. 5: "EXPIRED_GCLID",
  80. 6: "TOO_RECENT_GCLID",
  81. 7: "GCLID_NOT_FOUND",
  82. 8: "UNAUTHORIZED_CUSTOMER",
  83. 9: "INVALID_CONVERSION_ACTION",
  84. 10: "TOO_RECENT_CONVERSION_ACTION",
  85. 11: "CONVERSION_TRACKING_NOT_ENABLED_AT_IMPRESSION_TIME",
  86. 12: "EXTERNAL_ATTRIBUTION_DATA_SET_FOR_NON_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION",
  87. 13: "EXTERNAL_ATTRIBUTION_DATA_NOT_SET_FOR_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION",
  88. 14: "ORDER_ID_NOT_PERMITTED_FOR_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION",
  89. 15: "ORDER_ID_ALREADY_IN_USE",
  90. 16: "DUPLICATE_ORDER_ID",
  91. }
  92. var ConversionUploadErrorEnum_ConversionUploadError_value = map[string]int32{
  93. "UNSPECIFIED": 0,
  94. "UNKNOWN": 1,
  95. "TOO_MANY_CONVERSIONS_IN_REQUEST": 2,
  96. "UNPARSEABLE_GCLID": 3,
  97. "CONVERSION_PRECEDES_GCLID": 4,
  98. "EXPIRED_GCLID": 5,
  99. "TOO_RECENT_GCLID": 6,
  100. "GCLID_NOT_FOUND": 7,
  101. "UNAUTHORIZED_CUSTOMER": 8,
  102. "INVALID_CONVERSION_ACTION": 9,
  103. "TOO_RECENT_CONVERSION_ACTION": 10,
  104. "CONVERSION_TRACKING_NOT_ENABLED_AT_IMPRESSION_TIME": 11,
  105. "EXTERNAL_ATTRIBUTION_DATA_SET_FOR_NON_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION": 12,
  106. "EXTERNAL_ATTRIBUTION_DATA_NOT_SET_FOR_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION": 13,
  107. "ORDER_ID_NOT_PERMITTED_FOR_EXTERNALLY_ATTRIBUTED_CONVERSION_ACTION": 14,
  108. "ORDER_ID_ALREADY_IN_USE": 15,
  109. "DUPLICATE_ORDER_ID": 16,
  110. }
  111. func (x ConversionUploadErrorEnum_ConversionUploadError) String() string {
  112. return proto.EnumName(ConversionUploadErrorEnum_ConversionUploadError_name, int32(x))
  113. }
  114. func (ConversionUploadErrorEnum_ConversionUploadError) EnumDescriptor() ([]byte, []int) {
  115. return fileDescriptor_conversion_upload_error_f0cddf865a2edd2e, []int{0, 0}
  116. }
  117. // Container for enum describing possible conversion upload errors.
  118. type ConversionUploadErrorEnum struct {
  119. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  120. XXX_unrecognized []byte `json:"-"`
  121. XXX_sizecache int32 `json:"-"`
  122. }
  123. func (m *ConversionUploadErrorEnum) Reset() { *m = ConversionUploadErrorEnum{} }
  124. func (m *ConversionUploadErrorEnum) String() string { return proto.CompactTextString(m) }
  125. func (*ConversionUploadErrorEnum) ProtoMessage() {}
  126. func (*ConversionUploadErrorEnum) Descriptor() ([]byte, []int) {
  127. return fileDescriptor_conversion_upload_error_f0cddf865a2edd2e, []int{0}
  128. }
  129. func (m *ConversionUploadErrorEnum) XXX_Unmarshal(b []byte) error {
  130. return xxx_messageInfo_ConversionUploadErrorEnum.Unmarshal(m, b)
  131. }
  132. func (m *ConversionUploadErrorEnum) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  133. return xxx_messageInfo_ConversionUploadErrorEnum.Marshal(b, m, deterministic)
  134. }
  135. func (dst *ConversionUploadErrorEnum) XXX_Merge(src proto.Message) {
  136. xxx_messageInfo_ConversionUploadErrorEnum.Merge(dst, src)
  137. }
  138. func (m *ConversionUploadErrorEnum) XXX_Size() int {
  139. return xxx_messageInfo_ConversionUploadErrorEnum.Size(m)
  140. }
  141. func (m *ConversionUploadErrorEnum) XXX_DiscardUnknown() {
  142. xxx_messageInfo_ConversionUploadErrorEnum.DiscardUnknown(m)
  143. }
  144. var xxx_messageInfo_ConversionUploadErrorEnum proto.InternalMessageInfo
  145. func init() {
  146. proto.RegisterType((*ConversionUploadErrorEnum)(nil), "google.ads.googleads.v1.errors.ConversionUploadErrorEnum")
  147. proto.RegisterEnum("google.ads.googleads.v1.errors.ConversionUploadErrorEnum_ConversionUploadError", ConversionUploadErrorEnum_ConversionUploadError_name, ConversionUploadErrorEnum_ConversionUploadError_value)
  148. }
  149. func init() {
  150. proto.RegisterFile("google/ads/googleads/v1/errors/conversion_upload_error.proto", fileDescriptor_conversion_upload_error_f0cddf865a2edd2e)
  151. }
  152. var fileDescriptor_conversion_upload_error_f0cddf865a2edd2e = []byte{
  153. // 571 bytes of a gzipped FileDescriptorProto
  154. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0xd1, 0x4e, 0x13, 0x41,
  155. 0x14, 0x86, 0xa5, 0x08, 0xe8, 0x20, 0x32, 0x8c, 0xa2, 0x01, 0x11, 0x4d, 0xbd, 0xdf, 0xa6, 0x9a,
  156. 0x78, 0xb1, 0x7a, 0x33, 0xdd, 0x39, 0xd4, 0x09, 0xed, 0xcc, 0x32, 0x3b, 0x53, 0x81, 0x34, 0x99,
  157. 0x54, 0xda, 0x34, 0x4d, 0x60, 0xa7, 0xe9, 0x02, 0x6f, 0xe0, 0x8b, 0xe8, 0x9d, 0x8f, 0xe2, 0xa3,
  158. 0x78, 0xef, 0xbd, 0x99, 0xdd, 0xee, 0x4a, 0x62, 0x25, 0x7a, 0xd5, 0x93, 0x33, 0xdf, 0xff, 0xff,
  159. 0xa7, 0x9b, 0x73, 0xd0, 0xfb, 0xb1, 0x73, 0xe3, 0xf3, 0x51, 0x63, 0x30, 0xcc, 0x1a, 0x45, 0xe9,
  160. 0xab, 0xeb, 0x66, 0x63, 0x34, 0x9b, 0xb9, 0x59, 0xd6, 0x38, 0x73, 0xe9, 0xf5, 0x68, 0x96, 0x4d,
  161. 0x5c, 0x6a, 0xaf, 0xa6, 0xe7, 0x6e, 0x30, 0xb4, 0xf9, 0x43, 0x30, 0x9d, 0xb9, 0x4b, 0x47, 0xf6,
  162. 0x0b, 0x49, 0x30, 0x18, 0x66, 0x41, 0xa5, 0x0e, 0xae, 0x9b, 0x41, 0xa1, 0xde, 0xdd, 0x2b, 0xdd,
  163. 0xa7, 0x93, 0xc6, 0x20, 0x4d, 0xdd, 0xe5, 0xe0, 0x72, 0xe2, 0xd2, 0xac, 0x50, 0xd7, 0xbf, 0xae,
  164. 0xa0, 0x9d, 0xa8, 0xf2, 0x37, 0xb9, 0x3d, 0x78, 0x21, 0xa4, 0x57, 0x17, 0xf5, 0xcf, 0x2b, 0x68,
  165. 0x7b, 0xe1, 0x2b, 0xd9, 0x44, 0xeb, 0x46, 0x24, 0x31, 0x44, 0xfc, 0x80, 0x03, 0xc3, 0x77, 0xc8,
  166. 0x3a, 0x5a, 0x33, 0xe2, 0x50, 0xc8, 0x8f, 0x02, 0x2f, 0x91, 0x57, 0xe8, 0x85, 0x96, 0xd2, 0x76,
  167. 0xa9, 0x38, 0xb1, 0x91, 0x14, 0x3d, 0x50, 0x09, 0x97, 0x22, 0xb1, 0x5c, 0x58, 0x05, 0x47, 0x06,
  168. 0x12, 0x8d, 0x6b, 0x64, 0x1b, 0x6d, 0x19, 0x11, 0x53, 0x95, 0x00, 0x6d, 0x75, 0xc0, 0xb6, 0xa3,
  169. 0x0e, 0x67, 0x78, 0x99, 0x3c, 0x47, 0x3b, 0xbf, 0x25, 0x36, 0x56, 0x10, 0x01, 0x83, 0x64, 0xfe,
  170. 0x7c, 0x97, 0x6c, 0xa1, 0x0d, 0x38, 0x8e, 0xb9, 0x02, 0x36, 0x6f, 0xad, 0x90, 0xc7, 0x08, 0xfb,
  171. 0x34, 0x4f, 0x0a, 0x3d, 0xef, 0xae, 0x92, 0x47, 0x68, 0x33, 0x2f, 0xad, 0x90, 0xda, 0x1e, 0x48,
  172. 0x23, 0x18, 0x5e, 0x23, 0x3b, 0x68, 0xdb, 0x08, 0x6a, 0xf4, 0x07, 0xa9, 0xf8, 0x29, 0x30, 0x1b,
  173. 0x99, 0x44, 0xcb, 0x2e, 0x28, 0x7c, 0xcf, 0xe7, 0x72, 0xd1, 0xa3, 0x5e, 0x71, 0x23, 0x9f, 0x46,
  174. 0x9a, 0x4b, 0x81, 0xef, 0x93, 0x97, 0x68, 0xef, 0x46, 0xc8, 0x9f, 0x04, 0x22, 0x6f, 0xd1, 0xeb,
  175. 0x1b, 0x6d, 0xad, 0x68, 0x74, 0xc8, 0x45, 0x3b, 0x8f, 0x07, 0xe1, 0xff, 0x22, 0xb3, 0x54, 0x5b,
  176. 0xde, 0x8d, 0x15, 0x24, 0x05, 0xc2, 0xbb, 0x80, 0xd7, 0xc9, 0x11, 0xea, 0xc2, 0xb1, 0x06, 0x25,
  177. 0x68, 0xc7, 0x52, 0xad, 0x15, 0x6f, 0x19, 0xef, 0x68, 0x19, 0xd5, 0xd4, 0x26, 0xe0, 0x87, 0x57,
  178. 0x56, 0x48, 0x61, 0x4b, 0xaa, 0x73, 0x52, 0x71, 0xb0, 0x68, 0xd8, 0x07, 0xb7, 0x5b, 0xfa, 0x81,
  179. 0x4a, 0xdb, 0x7f, 0xb5, 0xdc, 0x20, 0x07, 0xa8, 0x25, 0x15, 0x03, 0x65, 0xe7, 0x5f, 0x34, 0x06,
  180. 0xd5, 0xe5, 0xda, 0xd3, 0xff, 0xe3, 0xf3, 0x90, 0x3c, 0x43, 0x4f, 0x2b, 0x1f, 0xda, 0x51, 0x40,
  181. 0xd9, 0x89, 0x5f, 0x0b, 0x93, 0x00, 0xde, 0x24, 0x4f, 0x10, 0x61, 0x26, 0xee, 0xf0, 0x88, 0x6a,
  182. 0xb0, 0x25, 0x86, 0x71, 0xeb, 0xe7, 0x12, 0xaa, 0x9f, 0xb9, 0x8b, 0xe0, 0xf6, 0x55, 0x6f, 0xed,
  183. 0x2e, 0xdc, 0xd5, 0xd8, 0x2f, 0x7a, 0xbc, 0x74, 0xca, 0xe6, 0xea, 0xb1, 0x3b, 0x1f, 0xa4, 0xe3,
  184. 0xc0, 0xcd, 0xc6, 0x8d, 0xf1, 0x28, 0xcd, 0xcf, 0xa0, 0x3c, 0xbb, 0xe9, 0x24, 0xfb, 0xdb, 0x15,
  185. 0xbe, 0x2b, 0x7e, 0xbe, 0xd4, 0x96, 0xdb, 0x94, 0x7e, 0xab, 0xed, 0xb7, 0x0b, 0x33, 0x3a, 0xcc,
  186. 0x82, 0xa2, 0xf4, 0x55, 0xaf, 0x19, 0xe4, 0x91, 0xd9, 0xf7, 0x12, 0xe8, 0xd3, 0x61, 0xd6, 0xaf,
  187. 0x80, 0x7e, 0xaf, 0xd9, 0x2f, 0x80, 0x1f, 0xb5, 0x7a, 0xd1, 0x0d, 0x43, 0x3a, 0xcc, 0xc2, 0xb0,
  188. 0x42, 0xc2, 0xb0, 0xd7, 0x0c, 0xc3, 0x02, 0xfa, 0xb4, 0x9a, 0x4f, 0xf7, 0xe6, 0x57, 0x00, 0x00,
  189. 0x00, 0xff, 0xff, 0xcb, 0xde, 0x1b, 0xca, 0x22, 0x04, 0x00, 0x00,
  190. }