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.
 
 
 

579 line
29 KiB

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