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.
 
 
 

580 lines
29 KiB

  1. // Code generated by protoc-gen-go. DO NOT EDIT.
  2. // source: google/ads/googleads/v1/resources/feed_item.proto
  3. package resources // import "google.golang.org/genproto/googleapis/ads/googleads/v1/resources"
  4. import proto "github.com/golang/protobuf/proto"
  5. import fmt "fmt"
  6. import math "math"
  7. import wrappers "github.com/golang/protobuf/ptypes/wrappers"
  8. import common "google.golang.org/genproto/googleapis/ads/googleads/v1/common"
  9. import enums "google.golang.org/genproto/googleapis/ads/googleads/v1/enums"
  10. import errors "google.golang.org/genproto/googleapis/ads/googleads/v1/errors"
  11. import _ "google.golang.org/genproto/googleapis/api/annotations"
  12. // Reference imports to suppress errors if they are not otherwise used.
  13. var _ = proto.Marshal
  14. var _ = fmt.Errorf
  15. var _ = math.Inf
  16. // This is a compile-time assertion to ensure that this generated file
  17. // is compatible with the proto package it is being compiled against.
  18. // A compilation error at this line likely means your copy of the
  19. // proto package needs to be updated.
  20. const _ = proto.ProtoPackageIsVersion2 // please upgrade the proto package
  21. // A feed item.
  22. type FeedItem struct {
  23. // The resource name of the feed item.
  24. // Feed item resource names have the form:
  25. //
  26. // `customers/{customer_id}/feedItems/{feed_id}~{feed_item_id}`
  27. ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
  28. // The feed to which this feed item belongs.
  29. Feed *wrappers.StringValue `protobuf:"bytes,2,opt,name=feed,proto3" json:"feed,omitempty"`
  30. // The ID of this feed item.
  31. Id *wrappers.Int64Value `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
  32. // Start time in which this feed item is effective and can begin serving.
  33. // The format is "YYYY-MM-DD HH:MM:SS".
  34. // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30"
  35. StartDateTime *wrappers.StringValue `protobuf:"bytes,4,opt,name=start_date_time,json=startDateTime,proto3" json:"start_date_time,omitempty"`
  36. // End time in which this feed item is no longer effective and will stop
  37. // serving.
  38. // The format is "YYYY-MM-DD HH:MM:SS".
  39. // Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30"
  40. EndDateTime *wrappers.StringValue `protobuf:"bytes,5,opt,name=end_date_time,json=endDateTime,proto3" json:"end_date_time,omitempty"`
  41. // The feed item's attribute values.
  42. AttributeValues []*FeedItemAttributeValue `protobuf:"bytes,6,rep,name=attribute_values,json=attributeValues,proto3" json:"attribute_values,omitempty"`
  43. // Geo targeting restriction specifies the type of location that can be used
  44. // for targeting.
  45. GeoTargetingRestriction enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction `protobuf:"varint,7,opt,name=geo_targeting_restriction,json=geoTargetingRestriction,proto3,enum=google.ads.googleads.v1.enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction" json:"geo_targeting_restriction,omitempty"`
  46. // The list of mappings used to substitute custom parameter tags in a
  47. // `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
  48. UrlCustomParameters []*common.CustomParameter `protobuf:"bytes,8,rep,name=url_custom_parameters,json=urlCustomParameters,proto3" json:"url_custom_parameters,omitempty"`
  49. // Status of the feed item.
  50. // This field is read-only.
  51. Status enums.FeedItemStatusEnum_FeedItemStatus `protobuf:"varint,9,opt,name=status,proto3,enum=google.ads.googleads.v1.enums.FeedItemStatusEnum_FeedItemStatus" json:"status,omitempty"`
  52. // List of info about a feed item's validation and approval state for active
  53. // feed mappings. There will be an entry in the list for each type of feed
  54. // mapping associated with the feed, e.g. a feed with a sitelink and a call
  55. // feed mapping would cause every feed item associated with that feed to have
  56. // an entry in this list for both sitelink and call.
  57. // This field is read-only.
  58. PolicyInfos []*FeedItemPlaceholderPolicyInfo `protobuf:"bytes,10,rep,name=policy_infos,json=policyInfos,proto3" json:"policy_infos,omitempty"`
  59. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  60. XXX_unrecognized []byte `json:"-"`
  61. XXX_sizecache int32 `json:"-"`
  62. }
  63. func (m *FeedItem) Reset() { *m = FeedItem{} }
  64. func (m *FeedItem) String() string { return proto.CompactTextString(m) }
  65. func (*FeedItem) ProtoMessage() {}
  66. func (*FeedItem) Descriptor() ([]byte, []int) {
  67. return fileDescriptor_feed_item_c9d65dee08780aa1, []int{0}
  68. }
  69. func (m *FeedItem) XXX_Unmarshal(b []byte) error {
  70. return xxx_messageInfo_FeedItem.Unmarshal(m, b)
  71. }
  72. func (m *FeedItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  73. return xxx_messageInfo_FeedItem.Marshal(b, m, deterministic)
  74. }
  75. func (dst *FeedItem) XXX_Merge(src proto.Message) {
  76. xxx_messageInfo_FeedItem.Merge(dst, src)
  77. }
  78. func (m *FeedItem) XXX_Size() int {
  79. return xxx_messageInfo_FeedItem.Size(m)
  80. }
  81. func (m *FeedItem) XXX_DiscardUnknown() {
  82. xxx_messageInfo_FeedItem.DiscardUnknown(m)
  83. }
  84. var xxx_messageInfo_FeedItem proto.InternalMessageInfo
  85. func (m *FeedItem) GetResourceName() string {
  86. if m != nil {
  87. return m.ResourceName
  88. }
  89. return ""
  90. }
  91. func (m *FeedItem) GetFeed() *wrappers.StringValue {
  92. if m != nil {
  93. return m.Feed
  94. }
  95. return nil
  96. }
  97. func (m *FeedItem) GetId() *wrappers.Int64Value {
  98. if m != nil {
  99. return m.Id
  100. }
  101. return nil
  102. }
  103. func (m *FeedItem) GetStartDateTime() *wrappers.StringValue {
  104. if m != nil {
  105. return m.StartDateTime
  106. }
  107. return nil
  108. }
  109. func (m *FeedItem) GetEndDateTime() *wrappers.StringValue {
  110. if m != nil {
  111. return m.EndDateTime
  112. }
  113. return nil
  114. }
  115. func (m *FeedItem) GetAttributeValues() []*FeedItemAttributeValue {
  116. if m != nil {
  117. return m.AttributeValues
  118. }
  119. return nil
  120. }
  121. func (m *FeedItem) GetGeoTargetingRestriction() enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction {
  122. if m != nil {
  123. return m.GeoTargetingRestriction
  124. }
  125. return enums.GeoTargetingRestrictionEnum_UNSPECIFIED
  126. }
  127. func (m *FeedItem) GetUrlCustomParameters() []*common.CustomParameter {
  128. if m != nil {
  129. return m.UrlCustomParameters
  130. }
  131. return nil
  132. }
  133. func (m *FeedItem) GetStatus() enums.FeedItemStatusEnum_FeedItemStatus {
  134. if m != nil {
  135. return m.Status
  136. }
  137. return enums.FeedItemStatusEnum_UNSPECIFIED
  138. }
  139. func (m *FeedItem) GetPolicyInfos() []*FeedItemPlaceholderPolicyInfo {
  140. if m != nil {
  141. return m.PolicyInfos
  142. }
  143. return nil
  144. }
  145. // A feed item attribute value.
  146. type FeedItemAttributeValue struct {
  147. // Id of the feed attribute for which the value is associated with.
  148. FeedAttributeId *wrappers.Int64Value `protobuf:"bytes,1,opt,name=feed_attribute_id,json=feedAttributeId,proto3" json:"feed_attribute_id,omitempty"`
  149. // Int64 value. Should be set if feed_attribute_id refers to a feed attribute
  150. // of type INT64.
  151. IntegerValue *wrappers.Int64Value `protobuf:"bytes,2,opt,name=integer_value,json=integerValue,proto3" json:"integer_value,omitempty"`
  152. // Bool value. Should be set if feed_attribute_id refers to a feed attribute
  153. // of type BOOLEAN.
  154. BooleanValue *wrappers.BoolValue `protobuf:"bytes,3,opt,name=boolean_value,json=booleanValue,proto3" json:"boolean_value,omitempty"`
  155. // String value. Should be set if feed_attribute_id refers to a feed attribute
  156. // of type STRING, URL or DATE_TIME.
  157. // For STRING the maximum length is 1500 characters. For URL the maximum
  158. // length is 2076 characters. For DATE_TIME the format of the string must
  159. // be the same as start and end time for the feed item.
  160. StringValue *wrappers.StringValue `protobuf:"bytes,4,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
  161. // Double value. Should be set if feed_attribute_id refers to a feed attribute
  162. // of type DOUBLE.
  163. DoubleValue *wrappers.DoubleValue `protobuf:"bytes,5,opt,name=double_value,json=doubleValue,proto3" json:"double_value,omitempty"`
  164. // Price value. Should be set if feed_attribute_id refers to a feed attribute
  165. // of type PRICE.
  166. PriceValue *common.Money `protobuf:"bytes,6,opt,name=price_value,json=priceValue,proto3" json:"price_value,omitempty"`
  167. // Repeated int64 value. Should be set if feed_attribute_id refers to a feed
  168. // attribute of type INT64_LIST.
  169. IntegerValues []*wrappers.Int64Value `protobuf:"bytes,7,rep,name=integer_values,json=integerValues,proto3" json:"integer_values,omitempty"`
  170. // Repeated bool value. Should be set if feed_attribute_id refers to a feed
  171. // attribute of type BOOLEAN_LIST.
  172. BooleanValues []*wrappers.BoolValue `protobuf:"bytes,8,rep,name=boolean_values,json=booleanValues,proto3" json:"boolean_values,omitempty"`
  173. // Repeated string value. Should be set if feed_attribute_id refers to a feed
  174. // attribute of type STRING_LIST, URL_LIST or DATE_TIME_LIST.
  175. // For STRING_LIST and URL_LIST the total size of the list in bytes may not
  176. // exceed 3000. For DATE_TIME_LIST the number of elements may not exceed 200.
  177. //
  178. // For STRING_LIST the maximum length of each string element is 1500
  179. // characters. For URL_LIST the maximum length is 2076 characters. For
  180. // DATE_TIME the format of the string must be the same as start and end time
  181. // for the feed item.
  182. StringValues []*wrappers.StringValue `protobuf:"bytes,9,rep,name=string_values,json=stringValues,proto3" json:"string_values,omitempty"`
  183. // Repeated double value. Should be set if feed_attribute_id refers to a feed
  184. // attribute of type DOUBLE_LIST.
  185. DoubleValues []*wrappers.DoubleValue `protobuf:"bytes,10,rep,name=double_values,json=doubleValues,proto3" json:"double_values,omitempty"`
  186. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  187. XXX_unrecognized []byte `json:"-"`
  188. XXX_sizecache int32 `json:"-"`
  189. }
  190. func (m *FeedItemAttributeValue) Reset() { *m = FeedItemAttributeValue{} }
  191. func (m *FeedItemAttributeValue) String() string { return proto.CompactTextString(m) }
  192. func (*FeedItemAttributeValue) ProtoMessage() {}
  193. func (*FeedItemAttributeValue) Descriptor() ([]byte, []int) {
  194. return fileDescriptor_feed_item_c9d65dee08780aa1, []int{1}
  195. }
  196. func (m *FeedItemAttributeValue) XXX_Unmarshal(b []byte) error {
  197. return xxx_messageInfo_FeedItemAttributeValue.Unmarshal(m, b)
  198. }
  199. func (m *FeedItemAttributeValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  200. return xxx_messageInfo_FeedItemAttributeValue.Marshal(b, m, deterministic)
  201. }
  202. func (dst *FeedItemAttributeValue) XXX_Merge(src proto.Message) {
  203. xxx_messageInfo_FeedItemAttributeValue.Merge(dst, src)
  204. }
  205. func (m *FeedItemAttributeValue) XXX_Size() int {
  206. return xxx_messageInfo_FeedItemAttributeValue.Size(m)
  207. }
  208. func (m *FeedItemAttributeValue) XXX_DiscardUnknown() {
  209. xxx_messageInfo_FeedItemAttributeValue.DiscardUnknown(m)
  210. }
  211. var xxx_messageInfo_FeedItemAttributeValue proto.InternalMessageInfo
  212. func (m *FeedItemAttributeValue) GetFeedAttributeId() *wrappers.Int64Value {
  213. if m != nil {
  214. return m.FeedAttributeId
  215. }
  216. return nil
  217. }
  218. func (m *FeedItemAttributeValue) GetIntegerValue() *wrappers.Int64Value {
  219. if m != nil {
  220. return m.IntegerValue
  221. }
  222. return nil
  223. }
  224. func (m *FeedItemAttributeValue) GetBooleanValue() *wrappers.BoolValue {
  225. if m != nil {
  226. return m.BooleanValue
  227. }
  228. return nil
  229. }
  230. func (m *FeedItemAttributeValue) GetStringValue() *wrappers.StringValue {
  231. if m != nil {
  232. return m.StringValue
  233. }
  234. return nil
  235. }
  236. func (m *FeedItemAttributeValue) GetDoubleValue() *wrappers.DoubleValue {
  237. if m != nil {
  238. return m.DoubleValue
  239. }
  240. return nil
  241. }
  242. func (m *FeedItemAttributeValue) GetPriceValue() *common.Money {
  243. if m != nil {
  244. return m.PriceValue
  245. }
  246. return nil
  247. }
  248. func (m *FeedItemAttributeValue) GetIntegerValues() []*wrappers.Int64Value {
  249. if m != nil {
  250. return m.IntegerValues
  251. }
  252. return nil
  253. }
  254. func (m *FeedItemAttributeValue) GetBooleanValues() []*wrappers.BoolValue {
  255. if m != nil {
  256. return m.BooleanValues
  257. }
  258. return nil
  259. }
  260. func (m *FeedItemAttributeValue) GetStringValues() []*wrappers.StringValue {
  261. if m != nil {
  262. return m.StringValues
  263. }
  264. return nil
  265. }
  266. func (m *FeedItemAttributeValue) GetDoubleValues() []*wrappers.DoubleValue {
  267. if m != nil {
  268. return m.DoubleValues
  269. }
  270. return nil
  271. }
  272. // Policy, validation, and quality approval info for a feed item for the
  273. // specified placeholder type.
  274. type FeedItemPlaceholderPolicyInfo struct {
  275. // The placeholder type.
  276. PlaceholderType *wrappers.Int32Value `protobuf:"bytes,1,opt,name=placeholder_type,json=placeholderType,proto3" json:"placeholder_type,omitempty"`
  277. // The FeedMapping that contains the placeholder type.
  278. FeedMappingResourceName *wrappers.StringValue `protobuf:"bytes,2,opt,name=feed_mapping_resource_name,json=feedMappingResourceName,proto3" json:"feed_mapping_resource_name,omitempty"`
  279. // Where the placeholder type is in the review process.
  280. ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,3,opt,name=review_status,json=reviewStatus,proto3,enum=google.ads.googleads.v1.enums.PolicyReviewStatusEnum_PolicyReviewStatus" json:"review_status,omitempty"`
  281. // The overall approval status of the placeholder type, calculated based on
  282. // the status of its individual policy topic entries.
  283. ApprovalStatus enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,4,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v1.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
  284. // The list of policy findings for the placeholder type.
  285. PolicyTopicEntries []*common.PolicyTopicEntry `protobuf:"bytes,5,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
  286. // The validation status of the palceholder type.
  287. ValidationStatus enums.FeedItemValidationStatusEnum_FeedItemValidationStatus `protobuf:"varint,6,opt,name=validation_status,json=validationStatus,proto3,enum=google.ads.googleads.v1.enums.FeedItemValidationStatusEnum_FeedItemValidationStatus" json:"validation_status,omitempty"`
  288. // List of placeholder type validation errors.
  289. ValidationErrors []*FeedItemValidationError `protobuf:"bytes,7,rep,name=validation_errors,json=validationErrors,proto3" json:"validation_errors,omitempty"`
  290. // Placeholder type quality evaluation approval status.
  291. QualityApprovalStatus enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus `protobuf:"varint,8,opt,name=quality_approval_status,json=qualityApprovalStatus,proto3,enum=google.ads.googleads.v1.enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus" json:"quality_approval_status,omitempty"`
  292. // List of placeholder type quality evaluation disapproval reasons.
  293. QualityDisapprovalReasons []enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason `protobuf:"varint,9,rep,packed,name=quality_disapproval_reasons,json=qualityDisapprovalReasons,proto3,enum=google.ads.googleads.v1.enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason" json:"quality_disapproval_reasons,omitempty"`
  294. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  295. XXX_unrecognized []byte `json:"-"`
  296. XXX_sizecache int32 `json:"-"`
  297. }
  298. func (m *FeedItemPlaceholderPolicyInfo) Reset() { *m = FeedItemPlaceholderPolicyInfo{} }
  299. func (m *FeedItemPlaceholderPolicyInfo) String() string { return proto.CompactTextString(m) }
  300. func (*FeedItemPlaceholderPolicyInfo) ProtoMessage() {}
  301. func (*FeedItemPlaceholderPolicyInfo) Descriptor() ([]byte, []int) {
  302. return fileDescriptor_feed_item_c9d65dee08780aa1, []int{2}
  303. }
  304. func (m *FeedItemPlaceholderPolicyInfo) XXX_Unmarshal(b []byte) error {
  305. return xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Unmarshal(m, b)
  306. }
  307. func (m *FeedItemPlaceholderPolicyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  308. return xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Marshal(b, m, deterministic)
  309. }
  310. func (dst *FeedItemPlaceholderPolicyInfo) XXX_Merge(src proto.Message) {
  311. xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Merge(dst, src)
  312. }
  313. func (m *FeedItemPlaceholderPolicyInfo) XXX_Size() int {
  314. return xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Size(m)
  315. }
  316. func (m *FeedItemPlaceholderPolicyInfo) XXX_DiscardUnknown() {
  317. xxx_messageInfo_FeedItemPlaceholderPolicyInfo.DiscardUnknown(m)
  318. }
  319. var xxx_messageInfo_FeedItemPlaceholderPolicyInfo proto.InternalMessageInfo
  320. func (m *FeedItemPlaceholderPolicyInfo) GetPlaceholderType() *wrappers.Int32Value {
  321. if m != nil {
  322. return m.PlaceholderType
  323. }
  324. return nil
  325. }
  326. func (m *FeedItemPlaceholderPolicyInfo) GetFeedMappingResourceName() *wrappers.StringValue {
  327. if m != nil {
  328. return m.FeedMappingResourceName
  329. }
  330. return nil
  331. }
  332. func (m *FeedItemPlaceholderPolicyInfo) GetReviewStatus() enums.PolicyReviewStatusEnum_PolicyReviewStatus {
  333. if m != nil {
  334. return m.ReviewStatus
  335. }
  336. return enums.PolicyReviewStatusEnum_UNSPECIFIED
  337. }
  338. func (m *FeedItemPlaceholderPolicyInfo) GetApprovalStatus() enums.PolicyApprovalStatusEnum_PolicyApprovalStatus {
  339. if m != nil {
  340. return m.ApprovalStatus
  341. }
  342. return enums.PolicyApprovalStatusEnum_UNSPECIFIED
  343. }
  344. func (m *FeedItemPlaceholderPolicyInfo) GetPolicyTopicEntries() []*common.PolicyTopicEntry {
  345. if m != nil {
  346. return m.PolicyTopicEntries
  347. }
  348. return nil
  349. }
  350. func (m *FeedItemPlaceholderPolicyInfo) GetValidationStatus() enums.FeedItemValidationStatusEnum_FeedItemValidationStatus {
  351. if m != nil {
  352. return m.ValidationStatus
  353. }
  354. return enums.FeedItemValidationStatusEnum_UNSPECIFIED
  355. }
  356. func (m *FeedItemPlaceholderPolicyInfo) GetValidationErrors() []*FeedItemValidationError {
  357. if m != nil {
  358. return m.ValidationErrors
  359. }
  360. return nil
  361. }
  362. func (m *FeedItemPlaceholderPolicyInfo) GetQualityApprovalStatus() enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus {
  363. if m != nil {
  364. return m.QualityApprovalStatus
  365. }
  366. return enums.FeedItemQualityApprovalStatusEnum_UNSPECIFIED
  367. }
  368. func (m *FeedItemPlaceholderPolicyInfo) GetQualityDisapprovalReasons() []enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason {
  369. if m != nil {
  370. return m.QualityDisapprovalReasons
  371. }
  372. return nil
  373. }
  374. // Stores a validation error and the set of offending feed attributes which
  375. // together are responsible for causing a feed item validation error.
  376. type FeedItemValidationError struct {
  377. // Error code indicating what validation error was triggered. The description
  378. // of the error can be found in the 'description' field.
  379. ValidationError errors.FeedItemValidationErrorEnum_FeedItemValidationError `protobuf:"varint,1,opt,name=validation_error,json=validationError,proto3,enum=google.ads.googleads.v1.errors.FeedItemValidationErrorEnum_FeedItemValidationError" json:"validation_error,omitempty"`
  380. // The description of the validation error.
  381. Description *wrappers.StringValue `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
  382. // Set of feed attributes in the feed item flagged during validation. If
  383. // empty, no specific feed attributes can be associated with the error
  384. // (e.g. error across the entire feed item).
  385. FeedAttributeIds []*wrappers.Int64Value `protobuf:"bytes,3,rep,name=feed_attribute_ids,json=feedAttributeIds,proto3" json:"feed_attribute_ids,omitempty"`
  386. // Any extra information related to this error which is not captured by
  387. // validation_error and feed_attribute_id (e.g. placeholder field IDs when
  388. // feed_attribute_id is not mapped). Note that extra_info is not localized.
  389. ExtraInfo *wrappers.StringValue `protobuf:"bytes,5,opt,name=extra_info,json=extraInfo,proto3" json:"extra_info,omitempty"`
  390. XXX_NoUnkeyedLiteral struct{} `json:"-"`
  391. XXX_unrecognized []byte `json:"-"`
  392. XXX_sizecache int32 `json:"-"`
  393. }
  394. func (m *FeedItemValidationError) Reset() { *m = FeedItemValidationError{} }
  395. func (m *FeedItemValidationError) String() string { return proto.CompactTextString(m) }
  396. func (*FeedItemValidationError) ProtoMessage() {}
  397. func (*FeedItemValidationError) Descriptor() ([]byte, []int) {
  398. return fileDescriptor_feed_item_c9d65dee08780aa1, []int{3}
  399. }
  400. func (m *FeedItemValidationError) XXX_Unmarshal(b []byte) error {
  401. return xxx_messageInfo_FeedItemValidationError.Unmarshal(m, b)
  402. }
  403. func (m *FeedItemValidationError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
  404. return xxx_messageInfo_FeedItemValidationError.Marshal(b, m, deterministic)
  405. }
  406. func (dst *FeedItemValidationError) XXX_Merge(src proto.Message) {
  407. xxx_messageInfo_FeedItemValidationError.Merge(dst, src)
  408. }
  409. func (m *FeedItemValidationError) XXX_Size() int {
  410. return xxx_messageInfo_FeedItemValidationError.Size(m)
  411. }
  412. func (m *FeedItemValidationError) XXX_DiscardUnknown() {
  413. xxx_messageInfo_FeedItemValidationError.DiscardUnknown(m)
  414. }
  415. var xxx_messageInfo_FeedItemValidationError proto.InternalMessageInfo
  416. func (m *FeedItemValidationError) GetValidationError() errors.FeedItemValidationErrorEnum_FeedItemValidationError {
  417. if m != nil {
  418. return m.ValidationError
  419. }
  420. return errors.FeedItemValidationErrorEnum_UNSPECIFIED
  421. }
  422. func (m *FeedItemValidationError) GetDescription() *wrappers.StringValue {
  423. if m != nil {
  424. return m.Description
  425. }
  426. return nil
  427. }
  428. func (m *FeedItemValidationError) GetFeedAttributeIds() []*wrappers.Int64Value {
  429. if m != nil {
  430. return m.FeedAttributeIds
  431. }
  432. return nil
  433. }
  434. func (m *FeedItemValidationError) GetExtraInfo() *wrappers.StringValue {
  435. if m != nil {
  436. return m.ExtraInfo
  437. }
  438. return nil
  439. }
  440. func init() {
  441. proto.RegisterType((*FeedItem)(nil), "google.ads.googleads.v1.resources.FeedItem")
  442. proto.RegisterType((*FeedItemAttributeValue)(nil), "google.ads.googleads.v1.resources.FeedItemAttributeValue")
  443. proto.RegisterType((*FeedItemPlaceholderPolicyInfo)(nil), "google.ads.googleads.v1.resources.FeedItemPlaceholderPolicyInfo")
  444. proto.RegisterType((*FeedItemValidationError)(nil), "google.ads.googleads.v1.resources.FeedItemValidationError")
  445. }
  446. func init() {
  447. proto.RegisterFile("google/ads/googleads/v1/resources/feed_item.proto", fileDescriptor_feed_item_c9d65dee08780aa1)
  448. }
  449. var fileDescriptor_feed_item_c9d65dee08780aa1 = []byte{
  450. // 1213 bytes of a gzipped FileDescriptorProto
  451. 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x57, 0xdb, 0x6e, 0xdc, 0x44,
  452. 0x18, 0xd6, 0x6e, 0xda, 0x34, 0x99, 0x3d, 0x24, 0x1d, 0x28, 0x71, 0xd3, 0x82, 0xd2, 0xa0, 0x48,
  453. 0x91, 0x2a, 0x79, 0xb3, 0xdb, 0x82, 0x60, 0x2b, 0x68, 0x36, 0xe4, 0xd0, 0x20, 0x8a, 0x82, 0x13,
  454. 0x45, 0x80, 0x22, 0xac, 0x59, 0x7b, 0x62, 0x46, 0xb2, 0x3d, 0xce, 0xcc, 0x78, 0xcb, 0xde, 0x20,
  455. 0xf1, 0x02, 0x5c, 0xf2, 0x00, 0x88, 0x2b, 0xee, 0xb8, 0x44, 0xbc, 0x01, 0x6f, 0xc1, 0x2d, 0x8f,
  456. 0xc0, 0x15, 0xf2, 0xcc, 0xd8, 0xeb, 0x3d, 0x78, 0xd7, 0xb9, 0x1b, 0xcf, 0xfc, 0xdf, 0xf7, 0x1f,
  457. 0xe6, 0x3f, 0x8c, 0x41, 0xdb, 0xa3, 0xd4, 0xf3, 0x71, 0x0b, 0xb9, 0xbc, 0xa5, 0x96, 0xc9, 0x6a,
  458. 0xd0, 0x6e, 0x31, 0xcc, 0x69, 0xcc, 0x1c, 0xcc, 0x5b, 0xd7, 0x18, 0xbb, 0x36, 0x11, 0x38, 0x30,
  459. 0x23, 0x46, 0x05, 0x85, 0x4f, 0x94, 0x9c, 0x89, 0x5c, 0x6e, 0x66, 0x10, 0x73, 0xd0, 0x36, 0x33,
  460. 0xc8, 0xe6, 0x07, 0x45, 0xac, 0x0e, 0x0d, 0x02, 0x1a, 0xb6, 0x9c, 0x98, 0x0b, 0x1a, 0xd8, 0x11,
  461. 0x62, 0x28, 0xc0, 0x02, 0x33, 0xc5, 0xbc, 0xb9, 0xb7, 0x00, 0x26, 0x2d, 0x51, 0x6b, 0x8d, 0x78,
  462. 0xba, 0x00, 0x11, 0x51, 0x9f, 0x38, 0x43, 0x2d, 0x7c, 0x54, 0x24, 0x8c, 0xc3, 0x38, 0xc8, 0xf9,
  463. 0x69, 0xdf, 0xc4, 0xc8, 0x27, 0x62, 0x68, 0xa3, 0x28, 0x62, 0x74, 0x80, 0x7c, 0x9b, 0x0b, 0x24,
  464. 0x62, 0xae, 0x69, 0x5e, 0xdd, 0x96, 0xc6, 0x25, 0x3c, 0x63, 0x62, 0x18, 0xf1, 0xcc, 0xfa, 0xe7,
  465. 0x65, 0x99, 0xc6, 0xf4, 0xbf, 0x2c, 0x8b, 0x1a, 0x20, 0x9f, 0xb8, 0x48, 0x10, 0x1a, 0x8e, 0x13,
  466. 0x7c, 0x32, 0x9f, 0xc0, 0xc3, 0xd4, 0x16, 0x88, 0x79, 0x58, 0x90, 0xd0, 0xb3, 0x19, 0xe6, 0x82,
  467. 0x11, 0x27, 0x61, 0xd1, 0xf0, 0xee, 0x7c, 0xb8, 0x0a, 0x79, 0x41, 0xec, 0x3e, 0x2a, 0x85, 0x65,
  468. 0x78, 0x40, 0xf0, 0x9b, 0xb2, 0x5e, 0x33, 0x46, 0x59, 0x81, 0xdb, 0xf2, 0x4c, 0x13, 0xbc, 0xa7,
  469. 0x09, 0xe4, 0x57, 0x3f, 0xbe, 0x6e, 0xbd, 0x61, 0x28, 0x8a, 0x30, 0x4b, 0x15, 0x3c, 0x4e, 0x15,
  470. 0x44, 0xa4, 0x85, 0xc2, 0x90, 0x0a, 0x49, 0xa1, 0x4f, 0xb7, 0xff, 0x58, 0x06, 0x2b, 0xc7, 0x18,
  471. 0xbb, 0xa7, 0x02, 0x07, 0xf0, 0x7d, 0xd0, 0x48, 0x73, 0xdd, 0x0e, 0x51, 0x80, 0x8d, 0xca, 0x56,
  472. 0x65, 0x77, 0xd5, 0xaa, 0xa7, 0x9b, 0x5f, 0xa2, 0x00, 0xc3, 0x3d, 0x70, 0x27, 0xb1, 0xc9, 0xa8,
  473. 0x6e, 0x55, 0x76, 0x6b, 0x9d, 0xc7, 0xba, 0x54, 0xcc, 0x54, 0xbd, 0x79, 0x2e, 0x18, 0x09, 0xbd,
  474. 0x4b, 0xe4, 0xc7, 0xd8, 0x92, 0x92, 0xf0, 0x29, 0xa8, 0x12, 0xd7, 0x58, 0x92, 0xf2, 0x8f, 0xa6,
  475. 0xe4, 0x4f, 0x43, 0xf1, 0xe1, 0x73, 0x25, 0x5e, 0x25, 0x2e, 0x3c, 0x04, 0x6b, 0x5c, 0x20, 0x26,
  476. 0x6c, 0x17, 0x09, 0x6c, 0x0b, 0x12, 0x60, 0xe3, 0x4e, 0x09, 0x4d, 0x0d, 0x09, 0x3a, 0x44, 0x02,
  477. 0x5f, 0x90, 0x00, 0xc3, 0x7d, 0xd0, 0xc0, 0xa1, 0x9b, 0xe3, 0xb8, 0x5b, 0x82, 0xa3, 0x86, 0x43,
  478. 0x37, 0x63, 0x70, 0xc1, 0x3a, 0x12, 0x82, 0x91, 0x7e, 0x2c, 0x70, 0x12, 0xfa, 0x18, 0x73, 0x63,
  479. 0x79, 0x6b, 0x69, 0xb7, 0xd6, 0xf9, 0xd8, 0x5c, 0xd8, 0x28, 0xcc, 0x34, 0xa4, 0xbd, 0x94, 0x42,
  480. 0x69, 0x58, 0x43, 0x63, 0xdf, 0x1c, 0xfe, 0x5c, 0x01, 0x0f, 0x0b, 0xf3, 0xd2, 0xb8, 0xb7, 0x55,
  481. 0xd9, 0x6d, 0x76, 0xac, 0x42, 0x7d, 0x32, 0xb9, 0xcc, 0x13, 0x4c, 0x2f, 0x52, 0xb8, 0x35, 0x42,
  482. 0x1f, 0x85, 0x71, 0x50, 0x74, 0x66, 0x6d, 0x78, 0xb3, 0x0f, 0xa0, 0x03, 0x1e, 0xc4, 0xcc, 0xb7,
  483. 0x27, 0x1b, 0x19, 0x37, 0x56, 0xa4, 0xef, 0xad, 0x42, 0x5b, 0x74, 0xfb, 0xfa, 0x4c, 0x02, 0xcf,
  484. 0x52, 0x9c, 0xf5, 0x56, 0xcc, 0xfc, 0x89, 0x3d, 0x0e, 0xbf, 0x06, 0xcb, 0xaa, 0x06, 0x8c, 0x55,
  485. 0xe9, 0xe1, 0xfe, 0x02, 0x0f, 0xd3, 0x68, 0x9e, 0x4b, 0x90, 0x74, 0x6c, 0x7c, 0xcb, 0xd2, 0x7c,
  486. 0xd0, 0x01, 0x75, 0x5d, 0x6b, 0x24, 0xbc, 0xa6, 0xdc, 0x00, 0xd2, 0xea, 0xfd, 0x5b, 0xdc, 0xd8,
  487. 0x99, 0x8f, 0x1c, 0xfc, 0x3d, 0xf5, 0x5d, 0xcc, 0xce, 0x24, 0xd3, 0x69, 0x78, 0x4d, 0xad, 0x5a,
  488. 0x94, 0xad, 0xf9, 0xf6, 0x5f, 0x77, 0xc1, 0x3b, 0xb3, 0x2f, 0x18, 0x9e, 0x80, 0xfb, 0xb2, 0x60,
  489. 0x47, 0xa9, 0x43, 0x5c, 0x59, 0x45, 0x0b, 0x32, 0x7f, 0x2d, 0x41, 0x65, 0x5c, 0xa7, 0x6e, 0x92,
  490. 0xc0, 0x24, 0x14, 0xd8, 0xc3, 0x4c, 0x25, 0x9f, 0x2e, 0xb7, 0xb9, 0x24, 0x75, 0x8d, 0x50, 0xa6,
  491. 0xbc, 0x04, 0x8d, 0x3e, 0xa5, 0x3e, 0x46, 0xa1, 0x66, 0x50, 0x05, 0xb8, 0x39, 0xc5, 0x70, 0x40,
  492. 0xa9, 0xaf, 0x09, 0x34, 0x20, 0x25, 0xa8, 0x73, 0x59, 0x1d, 0x1a, 0x5f, 0xa6, 0x0c, 0x6b, 0x7c,
  493. 0xf4, 0x91, 0x10, 0xb8, 0x34, 0xee, 0xfb, 0xba, 0x7e, 0x0a, 0x6b, 0xf0, 0x50, 0x0a, 0x69, 0x02,
  494. 0x77, 0xf4, 0x01, 0x8f, 0x41, 0x2d, 0x62, 0xc4, 0x49, 0xf1, 0xcb, 0x12, 0xbf, 0xb3, 0x28, 0x05,
  495. 0x5f, 0xd3, 0x10, 0x0f, 0x2d, 0x20, 0x91, 0x8a, 0xe7, 0x00, 0x34, 0xc7, 0x82, 0xc9, 0x8d, 0x7b,
  496. 0x32, 0x2f, 0xe6, 0x46, 0xb3, 0x91, 0x8f, 0x26, 0x87, 0x3d, 0xd0, 0x1c, 0x0b, 0x67, 0x5a, 0x11,
  497. 0xf3, 0xe2, 0xd9, 0xc8, 0xc7, 0x33, 0xa1, 0x68, 0xe4, 0x03, 0x9a, 0x64, 0xff, 0xd2, 0xc2, 0x88,
  498. 0xd6, 0x73, 0x11, 0x95, 0x14, 0xf9, 0x90, 0xa6, 0x09, 0x3e, 0x3f, 0xa6, 0xf5, 0x5c, 0x4c, 0xf9,
  499. 0xf6, 0x9f, 0x2b, 0xe0, 0xdd, 0xb9, 0xc9, 0x0e, 0x8f, 0xc1, 0x7a, 0x34, 0x3a, 0xb0, 0xc5, 0x30,
  500. 0xc2, 0xf3, 0x72, 0xf8, 0x59, 0x47, 0xe7, 0x70, 0x0e, 0x74, 0x31, 0x8c, 0x30, 0xfc, 0x06, 0x6c,
  501. 0xca, 0x62, 0x08, 0x50, 0x14, 0xe9, 0xd6, 0x96, 0x9b, 0x2d, 0x65, 0xe6, 0xc7, 0x46, 0x82, 0x7f,
  502. 0xad, 0xe0, 0x56, 0x7e, 0x08, 0x05, 0xc9, 0xa4, 0xca, 0x0d, 0x53, 0x99, 0xdc, 0xcd, 0xce, 0xab,
  503. 0x05, 0x8d, 0x44, 0x39, 0x69, 0x49, 0x64, 0xae, 0x99, 0x4c, 0x6f, 0x27, 0x33, 0x6f, 0xf4, 0x05,
  504. 0x63, 0xb0, 0x36, 0x31, 0xf7, 0x65, 0x35, 0x34, 0x3b, 0x5f, 0x94, 0x52, 0xd8, 0xd3, 0xd8, 0x29,
  505. 0x95, 0xe3, 0x07, 0x56, 0x13, 0x8d, 0x7d, 0xc3, 0x3e, 0x78, 0x5b, 0x77, 0x33, 0x41, 0x23, 0xe2,
  506. 0xd8, 0x38, 0x14, 0x8c, 0x60, 0x6e, 0xdc, 0x95, 0x97, 0xbe, 0xb7, 0xa8, 0x10, 0x94, 0x8e, 0x8b,
  507. 0x04, 0x7a, 0x14, 0x0a, 0x36, 0xb4, 0x60, 0x34, 0xbe, 0x43, 0x30, 0x87, 0x3f, 0x55, 0xc0, 0xfd,
  508. 0xa9, 0x07, 0x95, 0x2c, 0xb5, 0x66, 0xe7, 0xa2, 0x64, 0x5f, 0xbe, 0xcc, 0xf0, 0x33, 0x3a, 0xf4,
  509. 0xe4, 0xa1, 0xb5, 0x3e, 0x98, 0xd8, 0x81, 0xde, 0x98, 0x09, 0xea, 0xe1, 0xa3, 0x4b, 0xb4, 0x7b,
  510. 0x8b, 0xd6, 0x3d, 0xd2, 0x74, 0x94, 0x50, 0xe4, 0x15, 0xc9, 0x0d, 0x0e, 0x7f, 0xa9, 0x80, 0x8d,
  511. 0x82, 0x47, 0xb0, 0xb1, 0x22, 0x5d, 0xfe, 0xae, 0xa4, 0xcb, 0x5f, 0x29, 0x96, 0x19, 0x37, 0x3b,
  512. 0x57, 0xc2, 0x7a, 0x70, 0x33, 0x6b, 0x1b, 0xfe, 0x56, 0x01, 0x8f, 0x8a, 0x9f, 0xd5, 0xaa, 0x53,
  513. 0x34, 0x3b, 0xee, 0xed, 0x8c, 0x3b, 0x1c, 0x11, 0x59, 0x92, 0x67, 0x96, 0x7d, 0x53, 0x42, 0xd6,
  514. 0xc3, 0x9b, 0x82, 0x13, 0xbe, 0xfd, 0x4f, 0x15, 0x6c, 0x14, 0x44, 0x1b, 0xfe, 0x08, 0xd6, 0x27,
  515. 0x2f, 0x51, 0x76, 0x8d, 0x66, 0xe7, 0xbc, 0xd8, 0x6c, 0x79, 0x2d, 0x45, 0x17, 0x58, 0x90, 0x46,
  516. 0xea, 0x72, 0xd7, 0x26, 0x2e, 0x17, 0x7e, 0x0a, 0x6a, 0x2e, 0xe6, 0x0e, 0x23, 0x91, 0x7c, 0x3b,
  517. 0x95, 0x69, 0x2f, 0x79, 0x00, 0x3c, 0x05, 0x70, 0x6a, 0x74, 0x27, 0x7d, 0x65, 0xe1, 0xa0, 0x58,
  518. 0x9f, 0x98, 0xdd, 0x1c, 0xbe, 0x00, 0x00, 0xff, 0x20, 0x18, 0x92, 0x8f, 0x90, 0x52, 0x4f, 0xcf,
  519. 0x55, 0x29, 0x9f, 0x74, 0xdf, 0x83, 0xff, 0x2a, 0x60, 0xc7, 0xa1, 0xc1, 0xe2, 0xbc, 0x3f, 0x68,
  520. 0x64, 0x6d, 0x3c, 0xa1, 0x3c, 0xab, 0x7c, 0xfb, 0xb9, 0xc6, 0x78, 0xd4, 0x47, 0xa1, 0x67, 0x52,
  521. 0xe6, 0xb5, 0x3c, 0x1c, 0x4a, 0x85, 0xe9, 0xbf, 0x45, 0x44, 0xf8, 0x9c, 0x7f, 0xe2, 0x17, 0xd9,
  522. 0xea, 0xd7, 0xea, 0xd2, 0x49, 0xaf, 0xf7, 0x7b, 0xf5, 0xc9, 0x89, 0xa2, 0xec, 0xb9, 0xdc, 0x54,
  523. 0xcb, 0x64, 0x75, 0xd9, 0x36, 0xd3, 0x76, 0xcc, 0xff, 0x4e, 0x65, 0xae, 0x7a, 0x2e, 0xbf, 0xca,
  524. 0x64, 0xae, 0x2e, 0xdb, 0x57, 0x99, 0xcc, 0xbf, 0xd5, 0x1d, 0x75, 0xd0, 0xed, 0xf6, 0x5c, 0xde,
  525. 0xed, 0x66, 0x52, 0xdd, 0xee, 0x65, 0xbb, 0xdb, 0xcd, 0xe4, 0xfa, 0xcb, 0xd2, 0xd8, 0x67, 0xff,
  526. 0x07, 0x00, 0x00, 0xff, 0xff, 0x79, 0xc5, 0x0d, 0x5c, 0xbf, 0x0f, 0x00, 0x00,
  527. }