File: feed_item.pb.go

package info (click to toggle)
golang-google-genproto 0.0~git20200413.b5235f6-1
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, bullseye-backports, experimental
  • size: 50,816 kB
  • sloc: sh: 49; makefile: 12
file content (594 lines) | stat: -rw-r--r-- 30,210 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v1/resources/feed_item.proto

package resources

import (
	fmt "fmt"
	math "math"

	proto "github.com/golang/protobuf/proto"
	wrappers "github.com/golang/protobuf/ptypes/wrappers"
	common "google.golang.org/genproto/googleapis/ads/googleads/v1/common"
	enums "google.golang.org/genproto/googleapis/ads/googleads/v1/enums"
	errors "google.golang.org/genproto/googleapis/ads/googleads/v1/errors"
	_ "google.golang.org/genproto/googleapis/api/annotations"
)

// Reference imports to suppress errors if they are not otherwise used.
var _ = proto.Marshal
var _ = fmt.Errorf
var _ = math.Inf

// This is a compile-time assertion to ensure that this generated file
// is compatible with the proto package it is being compiled against.
// A compilation error at this line likely means your copy of the
// proto package needs to be updated.
const _ = proto.ProtoPackageIsVersion3 // please upgrade the proto package

// A feed item.
type FeedItem struct {
	// Immutable. The resource name of the feed item.
	// Feed item resource names have the form:
	//
	// `customers/{customer_id}/feedItems/{feed_id}~{feed_item_id}`
	ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
	// Immutable. The feed to which this feed item belongs.
	Feed *wrappers.StringValue `protobuf:"bytes,2,opt,name=feed,proto3" json:"feed,omitempty"`
	// Output only. The ID of this feed item.
	Id *wrappers.Int64Value `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
	// Start time in which this feed item is effective and can begin serving. The
	// time is in the customer's time zone.
	// The format is "YYYY-MM-DD HH:MM:SS".
	// Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30"
	StartDateTime *wrappers.StringValue `protobuf:"bytes,4,opt,name=start_date_time,json=startDateTime,proto3" json:"start_date_time,omitempty"`
	// End time in which this feed item is no longer effective and will stop
	// serving. The time is in the customer's time zone.
	// The format is "YYYY-MM-DD HH:MM:SS".
	// Examples: "2018-03-05 09:15:00" or "2018-02-01 14:34:30"
	EndDateTime *wrappers.StringValue `protobuf:"bytes,5,opt,name=end_date_time,json=endDateTime,proto3" json:"end_date_time,omitempty"`
	// The feed item's attribute values.
	AttributeValues []*FeedItemAttributeValue `protobuf:"bytes,6,rep,name=attribute_values,json=attributeValues,proto3" json:"attribute_values,omitempty"`
	// Geo targeting restriction specifies the type of location that can be used
	// for targeting.
	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"`
	// The list of mappings used to substitute custom parameter tags in a
	// `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
	UrlCustomParameters []*common.CustomParameter `protobuf:"bytes,8,rep,name=url_custom_parameters,json=urlCustomParameters,proto3" json:"url_custom_parameters,omitempty"`
	// Output only. Status of the feed item.
	// This field is read-only.
	Status enums.FeedItemStatusEnum_FeedItemStatus `protobuf:"varint,9,opt,name=status,proto3,enum=google.ads.googleads.v1.enums.FeedItemStatusEnum_FeedItemStatus" json:"status,omitempty"`
	// Output only. List of info about a feed item's validation and approval state for active
	// feed mappings. There will be an entry in the list for each type of feed
	// mapping associated with the feed, e.g. a feed with a sitelink and a call
	// feed mapping would cause every feed item associated with that feed to have
	// an entry in this list for both sitelink and call.
	// This field is read-only.
	PolicyInfos          []*FeedItemPlaceholderPolicyInfo `protobuf:"bytes,10,rep,name=policy_infos,json=policyInfos,proto3" json:"policy_infos,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                         `json:"-"`
	XXX_unrecognized     []byte                           `json:"-"`
	XXX_sizecache        int32                            `json:"-"`
}

func (m *FeedItem) Reset()         { *m = FeedItem{} }
func (m *FeedItem) String() string { return proto.CompactTextString(m) }
func (*FeedItem) ProtoMessage()    {}
func (*FeedItem) Descriptor() ([]byte, []int) {
	return fileDescriptor_7db33c9c712020a5, []int{0}
}

func (m *FeedItem) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FeedItem.Unmarshal(m, b)
}
func (m *FeedItem) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FeedItem.Marshal(b, m, deterministic)
}
func (m *FeedItem) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FeedItem.Merge(m, src)
}
func (m *FeedItem) XXX_Size() int {
	return xxx_messageInfo_FeedItem.Size(m)
}
func (m *FeedItem) XXX_DiscardUnknown() {
	xxx_messageInfo_FeedItem.DiscardUnknown(m)
}

var xxx_messageInfo_FeedItem proto.InternalMessageInfo

func (m *FeedItem) GetResourceName() string {
	if m != nil {
		return m.ResourceName
	}
	return ""
}

func (m *FeedItem) GetFeed() *wrappers.StringValue {
	if m != nil {
		return m.Feed
	}
	return nil
}

func (m *FeedItem) GetId() *wrappers.Int64Value {
	if m != nil {
		return m.Id
	}
	return nil
}

func (m *FeedItem) GetStartDateTime() *wrappers.StringValue {
	if m != nil {
		return m.StartDateTime
	}
	return nil
}

func (m *FeedItem) GetEndDateTime() *wrappers.StringValue {
	if m != nil {
		return m.EndDateTime
	}
	return nil
}

func (m *FeedItem) GetAttributeValues() []*FeedItemAttributeValue {
	if m != nil {
		return m.AttributeValues
	}
	return nil
}

func (m *FeedItem) GetGeoTargetingRestriction() enums.GeoTargetingRestrictionEnum_GeoTargetingRestriction {
	if m != nil {
		return m.GeoTargetingRestriction
	}
	return enums.GeoTargetingRestrictionEnum_UNSPECIFIED
}

func (m *FeedItem) GetUrlCustomParameters() []*common.CustomParameter {
	if m != nil {
		return m.UrlCustomParameters
	}
	return nil
}

func (m *FeedItem) GetStatus() enums.FeedItemStatusEnum_FeedItemStatus {
	if m != nil {
		return m.Status
	}
	return enums.FeedItemStatusEnum_UNSPECIFIED
}

func (m *FeedItem) GetPolicyInfos() []*FeedItemPlaceholderPolicyInfo {
	if m != nil {
		return m.PolicyInfos
	}
	return nil
}

// A feed item attribute value.
type FeedItemAttributeValue struct {
	// Id of the feed attribute for which the value is associated with.
	FeedAttributeId *wrappers.Int64Value `protobuf:"bytes,1,opt,name=feed_attribute_id,json=feedAttributeId,proto3" json:"feed_attribute_id,omitempty"`
	// Int64 value. Should be set if feed_attribute_id refers to a feed attribute
	// of type INT64.
	IntegerValue *wrappers.Int64Value `protobuf:"bytes,2,opt,name=integer_value,json=integerValue,proto3" json:"integer_value,omitempty"`
	// Bool value. Should be set if feed_attribute_id refers to a feed attribute
	// of type BOOLEAN.
	BooleanValue *wrappers.BoolValue `protobuf:"bytes,3,opt,name=boolean_value,json=booleanValue,proto3" json:"boolean_value,omitempty"`
	// String value. Should be set if feed_attribute_id refers to a feed attribute
	// of type STRING, URL or DATE_TIME.
	// For STRING the maximum length is 1500 characters. For URL the maximum
	// length is 2076 characters. For DATE_TIME the string must be in the format
	// "YYYYMMDD HHMMSS".
	StringValue *wrappers.StringValue `protobuf:"bytes,4,opt,name=string_value,json=stringValue,proto3" json:"string_value,omitempty"`
	// Double value. Should be set if feed_attribute_id refers to a feed attribute
	// of type DOUBLE.
	DoubleValue *wrappers.DoubleValue `protobuf:"bytes,5,opt,name=double_value,json=doubleValue,proto3" json:"double_value,omitempty"`
	// Price value. Should be set if feed_attribute_id refers to a feed attribute
	// of type PRICE.
	PriceValue *common.Money `protobuf:"bytes,6,opt,name=price_value,json=priceValue,proto3" json:"price_value,omitempty"`
	// Repeated int64 value. Should be set if feed_attribute_id refers to a feed
	// attribute of type INT64_LIST.
	IntegerValues []*wrappers.Int64Value `protobuf:"bytes,7,rep,name=integer_values,json=integerValues,proto3" json:"integer_values,omitempty"`
	// Repeated bool value. Should be set if feed_attribute_id refers to a feed
	// attribute of type BOOLEAN_LIST.
	BooleanValues []*wrappers.BoolValue `protobuf:"bytes,8,rep,name=boolean_values,json=booleanValues,proto3" json:"boolean_values,omitempty"`
	// Repeated string value. Should be set if feed_attribute_id refers to a feed
	// attribute of type STRING_LIST, URL_LIST or DATE_TIME_LIST.
	// For STRING_LIST and URL_LIST the total size of the list in bytes may not
	// exceed 3000. For DATE_TIME_LIST the number of elements may not exceed 200.
	//
	// For STRING_LIST the maximum length of each string element is 1500
	// characters. For URL_LIST the maximum length is 2076 characters. For
	// DATE_TIME the format of the string must be the same as start and end time
	// for the feed item.
	StringValues []*wrappers.StringValue `protobuf:"bytes,9,rep,name=string_values,json=stringValues,proto3" json:"string_values,omitempty"`
	// Repeated double value. Should be set if feed_attribute_id refers to a feed
	// attribute of type DOUBLE_LIST.
	DoubleValues         []*wrappers.DoubleValue `protobuf:"bytes,10,rep,name=double_values,json=doubleValues,proto3" json:"double_values,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                `json:"-"`
	XXX_unrecognized     []byte                  `json:"-"`
	XXX_sizecache        int32                   `json:"-"`
}

func (m *FeedItemAttributeValue) Reset()         { *m = FeedItemAttributeValue{} }
func (m *FeedItemAttributeValue) String() string { return proto.CompactTextString(m) }
func (*FeedItemAttributeValue) ProtoMessage()    {}
func (*FeedItemAttributeValue) Descriptor() ([]byte, []int) {
	return fileDescriptor_7db33c9c712020a5, []int{1}
}

func (m *FeedItemAttributeValue) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FeedItemAttributeValue.Unmarshal(m, b)
}
func (m *FeedItemAttributeValue) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FeedItemAttributeValue.Marshal(b, m, deterministic)
}
func (m *FeedItemAttributeValue) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FeedItemAttributeValue.Merge(m, src)
}
func (m *FeedItemAttributeValue) XXX_Size() int {
	return xxx_messageInfo_FeedItemAttributeValue.Size(m)
}
func (m *FeedItemAttributeValue) XXX_DiscardUnknown() {
	xxx_messageInfo_FeedItemAttributeValue.DiscardUnknown(m)
}

var xxx_messageInfo_FeedItemAttributeValue proto.InternalMessageInfo

func (m *FeedItemAttributeValue) GetFeedAttributeId() *wrappers.Int64Value {
	if m != nil {
		return m.FeedAttributeId
	}
	return nil
}

func (m *FeedItemAttributeValue) GetIntegerValue() *wrappers.Int64Value {
	if m != nil {
		return m.IntegerValue
	}
	return nil
}

func (m *FeedItemAttributeValue) GetBooleanValue() *wrappers.BoolValue {
	if m != nil {
		return m.BooleanValue
	}
	return nil
}

func (m *FeedItemAttributeValue) GetStringValue() *wrappers.StringValue {
	if m != nil {
		return m.StringValue
	}
	return nil
}

func (m *FeedItemAttributeValue) GetDoubleValue() *wrappers.DoubleValue {
	if m != nil {
		return m.DoubleValue
	}
	return nil
}

func (m *FeedItemAttributeValue) GetPriceValue() *common.Money {
	if m != nil {
		return m.PriceValue
	}
	return nil
}

func (m *FeedItemAttributeValue) GetIntegerValues() []*wrappers.Int64Value {
	if m != nil {
		return m.IntegerValues
	}
	return nil
}

func (m *FeedItemAttributeValue) GetBooleanValues() []*wrappers.BoolValue {
	if m != nil {
		return m.BooleanValues
	}
	return nil
}

func (m *FeedItemAttributeValue) GetStringValues() []*wrappers.StringValue {
	if m != nil {
		return m.StringValues
	}
	return nil
}

func (m *FeedItemAttributeValue) GetDoubleValues() []*wrappers.DoubleValue {
	if m != nil {
		return m.DoubleValues
	}
	return nil
}

// Policy, validation, and quality approval info for a feed item for the
// specified placeholder type.
type FeedItemPlaceholderPolicyInfo struct {
	// Output only. The placeholder type.
	PlaceholderType *wrappers.Int32Value `protobuf:"bytes,1,opt,name=placeholder_type,json=placeholderType,proto3" json:"placeholder_type,omitempty"`
	// Output only. The FeedMapping that contains the placeholder type.
	FeedMappingResourceName *wrappers.StringValue `protobuf:"bytes,2,opt,name=feed_mapping_resource_name,json=feedMappingResourceName,proto3" json:"feed_mapping_resource_name,omitempty"`
	// Output only. Where the placeholder type is in the review process.
	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"`
	// Output only. The overall approval status of the placeholder type, calculated based on
	// the status of its individual policy topic entries.
	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"`
	// Output only. The list of policy findings for the placeholder type.
	PolicyTopicEntries []*common.PolicyTopicEntry `protobuf:"bytes,5,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
	// Output only. The validation status of the palceholder type.
	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"`
	// Output only. List of placeholder type validation errors.
	ValidationErrors []*FeedItemValidationError `protobuf:"bytes,7,rep,name=validation_errors,json=validationErrors,proto3" json:"validation_errors,omitempty"`
	// Output only. Placeholder type quality evaluation approval status.
	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"`
	// Output only. List of placeholder type quality evaluation disapproval reasons.
	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"`
	XXX_NoUnkeyedLiteral      struct{}                                                                      `json:"-"`
	XXX_unrecognized          []byte                                                                        `json:"-"`
	XXX_sizecache             int32                                                                         `json:"-"`
}

func (m *FeedItemPlaceholderPolicyInfo) Reset()         { *m = FeedItemPlaceholderPolicyInfo{} }
func (m *FeedItemPlaceholderPolicyInfo) String() string { return proto.CompactTextString(m) }
func (*FeedItemPlaceholderPolicyInfo) ProtoMessage()    {}
func (*FeedItemPlaceholderPolicyInfo) Descriptor() ([]byte, []int) {
	return fileDescriptor_7db33c9c712020a5, []int{2}
}

func (m *FeedItemPlaceholderPolicyInfo) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Unmarshal(m, b)
}
func (m *FeedItemPlaceholderPolicyInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Marshal(b, m, deterministic)
}
func (m *FeedItemPlaceholderPolicyInfo) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Merge(m, src)
}
func (m *FeedItemPlaceholderPolicyInfo) XXX_Size() int {
	return xxx_messageInfo_FeedItemPlaceholderPolicyInfo.Size(m)
}
func (m *FeedItemPlaceholderPolicyInfo) XXX_DiscardUnknown() {
	xxx_messageInfo_FeedItemPlaceholderPolicyInfo.DiscardUnknown(m)
}

var xxx_messageInfo_FeedItemPlaceholderPolicyInfo proto.InternalMessageInfo

func (m *FeedItemPlaceholderPolicyInfo) GetPlaceholderType() *wrappers.Int32Value {
	if m != nil {
		return m.PlaceholderType
	}
	return nil
}

func (m *FeedItemPlaceholderPolicyInfo) GetFeedMappingResourceName() *wrappers.StringValue {
	if m != nil {
		return m.FeedMappingResourceName
	}
	return nil
}

func (m *FeedItemPlaceholderPolicyInfo) GetReviewStatus() enums.PolicyReviewStatusEnum_PolicyReviewStatus {
	if m != nil {
		return m.ReviewStatus
	}
	return enums.PolicyReviewStatusEnum_UNSPECIFIED
}

func (m *FeedItemPlaceholderPolicyInfo) GetApprovalStatus() enums.PolicyApprovalStatusEnum_PolicyApprovalStatus {
	if m != nil {
		return m.ApprovalStatus
	}
	return enums.PolicyApprovalStatusEnum_UNSPECIFIED
}

func (m *FeedItemPlaceholderPolicyInfo) GetPolicyTopicEntries() []*common.PolicyTopicEntry {
	if m != nil {
		return m.PolicyTopicEntries
	}
	return nil
}

func (m *FeedItemPlaceholderPolicyInfo) GetValidationStatus() enums.FeedItemValidationStatusEnum_FeedItemValidationStatus {
	if m != nil {
		return m.ValidationStatus
	}
	return enums.FeedItemValidationStatusEnum_UNSPECIFIED
}

func (m *FeedItemPlaceholderPolicyInfo) GetValidationErrors() []*FeedItemValidationError {
	if m != nil {
		return m.ValidationErrors
	}
	return nil
}

func (m *FeedItemPlaceholderPolicyInfo) GetQualityApprovalStatus() enums.FeedItemQualityApprovalStatusEnum_FeedItemQualityApprovalStatus {
	if m != nil {
		return m.QualityApprovalStatus
	}
	return enums.FeedItemQualityApprovalStatusEnum_UNSPECIFIED
}

func (m *FeedItemPlaceholderPolicyInfo) GetQualityDisapprovalReasons() []enums.FeedItemQualityDisapprovalReasonEnum_FeedItemQualityDisapprovalReason {
	if m != nil {
		return m.QualityDisapprovalReasons
	}
	return nil
}

// Stores a validation error and the set of offending feed attributes which
// together are responsible for causing a feed item validation error.
type FeedItemValidationError struct {
	// Output only. Error code indicating what validation error was triggered. The description
	// of the error can be found in the 'description' field.
	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"`
	// Output only. The description of the validation error.
	Description *wrappers.StringValue `protobuf:"bytes,2,opt,name=description,proto3" json:"description,omitempty"`
	// Output only. Set of feed attributes in the feed item flagged during validation. If
	// empty, no specific feed attributes can be associated with the error
	// (e.g. error across the entire feed item).
	FeedAttributeIds []*wrappers.Int64Value `protobuf:"bytes,3,rep,name=feed_attribute_ids,json=feedAttributeIds,proto3" json:"feed_attribute_ids,omitempty"`
	// Output only. Any extra information related to this error which is not captured by
	// validation_error and feed_attribute_id (e.g. placeholder field IDs when
	// feed_attribute_id is not mapped). Note that extra_info is not localized.
	ExtraInfo            *wrappers.StringValue `protobuf:"bytes,5,opt,name=extra_info,json=extraInfo,proto3" json:"extra_info,omitempty"`
	XXX_NoUnkeyedLiteral struct{}              `json:"-"`
	XXX_unrecognized     []byte                `json:"-"`
	XXX_sizecache        int32                 `json:"-"`
}

func (m *FeedItemValidationError) Reset()         { *m = FeedItemValidationError{} }
func (m *FeedItemValidationError) String() string { return proto.CompactTextString(m) }
func (*FeedItemValidationError) ProtoMessage()    {}
func (*FeedItemValidationError) Descriptor() ([]byte, []int) {
	return fileDescriptor_7db33c9c712020a5, []int{3}
}

func (m *FeedItemValidationError) XXX_Unmarshal(b []byte) error {
	return xxx_messageInfo_FeedItemValidationError.Unmarshal(m, b)
}
func (m *FeedItemValidationError) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
	return xxx_messageInfo_FeedItemValidationError.Marshal(b, m, deterministic)
}
func (m *FeedItemValidationError) XXX_Merge(src proto.Message) {
	xxx_messageInfo_FeedItemValidationError.Merge(m, src)
}
func (m *FeedItemValidationError) XXX_Size() int {
	return xxx_messageInfo_FeedItemValidationError.Size(m)
}
func (m *FeedItemValidationError) XXX_DiscardUnknown() {
	xxx_messageInfo_FeedItemValidationError.DiscardUnknown(m)
}

var xxx_messageInfo_FeedItemValidationError proto.InternalMessageInfo

func (m *FeedItemValidationError) GetValidationError() errors.FeedItemValidationErrorEnum_FeedItemValidationError {
	if m != nil {
		return m.ValidationError
	}
	return errors.FeedItemValidationErrorEnum_UNSPECIFIED
}

func (m *FeedItemValidationError) GetDescription() *wrappers.StringValue {
	if m != nil {
		return m.Description
	}
	return nil
}

func (m *FeedItemValidationError) GetFeedAttributeIds() []*wrappers.Int64Value {
	if m != nil {
		return m.FeedAttributeIds
	}
	return nil
}

func (m *FeedItemValidationError) GetExtraInfo() *wrappers.StringValue {
	if m != nil {
		return m.ExtraInfo
	}
	return nil
}

func init() {
	proto.RegisterType((*FeedItem)(nil), "google.ads.googleads.v1.resources.FeedItem")
	proto.RegisterType((*FeedItemAttributeValue)(nil), "google.ads.googleads.v1.resources.FeedItemAttributeValue")
	proto.RegisterType((*FeedItemPlaceholderPolicyInfo)(nil), "google.ads.googleads.v1.resources.FeedItemPlaceholderPolicyInfo")
	proto.RegisterType((*FeedItemValidationError)(nil), "google.ads.googleads.v1.resources.FeedItemValidationError")
}

func init() {
	proto.RegisterFile("google/ads/googleads/v1/resources/feed_item.proto", fileDescriptor_7db33c9c712020a5)
}

var fileDescriptor_7db33c9c712020a5 = []byte{
	// 1321 bytes of a gzipped FileDescriptorProto
	0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x58, 0xdd, 0x6e, 0xdc, 0xc4,
	0x17, 0xd7, 0xee, 0x36, 0x69, 0x3a, 0xfb, 0x91, 0x74, 0xfe, 0xff, 0x92, 0x6d, 0xda, 0xd2, 0x34,
	0x28, 0x52, 0x00, 0xc9, 0x6e, 0xb6, 0x05, 0xc1, 0x22, 0xd4, 0x6c, 0x9a, 0x34, 0x0d, 0xd0, 0x12,
	0xdc, 0x28, 0x48, 0x28, 0xd4, 0x9a, 0xac, 0x27, 0xee, 0x48, 0xb6, 0xc7, 0x9d, 0x19, 0x6f, 0x09,
	0x55, 0xaf, 0x90, 0xb8, 0xe4, 0x05, 0xb8, 0xe3, 0x0e, 0x5e, 0x81, 0x37, 0xe0, 0x29, 0x7a, 0xd5,
	0x8b, 0x3e, 0x00, 0x17, 0xbd, 0x42, 0x9e, 0x19, 0x7b, 0xbd, 0x1f, 0xf6, 0x3a, 0x77, 0xe3, 0x39,
	0xe7, 0xf7, 0x3b, 0x67, 0xce, 0x9c, 0x8f, 0xd9, 0x05, 0x9b, 0x2e, 0xa5, 0xae, 0x87, 0x4d, 0xe4,
	0x70, 0x53, 0x2d, 0xe3, 0xd5, 0x60, 0xd3, 0x64, 0x98, 0xd3, 0x88, 0xf5, 0x31, 0x37, 0x4f, 0x31,
	0x76, 0x6c, 0x22, 0xb0, 0x6f, 0x84, 0x8c, 0x0a, 0x0a, 0x6f, 0x29, 0x3d, 0x03, 0x39, 0xdc, 0x48,
	0x21, 0xc6, 0x60, 0xd3, 0x48, 0x21, 0x2b, 0x9f, 0xe4, 0xb1, 0xf6, 0xa9, 0xef, 0xd3, 0xc0, 0xec,
	0x47, 0x5c, 0x50, 0xdf, 0x0e, 0x11, 0x43, 0x3e, 0x16, 0x98, 0x29, 0xe6, 0x95, 0xdb, 0x33, 0x60,
	0xd2, 0x13, 0xb5, 0xd6, 0x88, 0x8f, 0x67, 0x20, 0x42, 0xea, 0x91, 0xfe, 0x99, 0x56, 0xde, 0xcd,
	0x53, 0xc6, 0x41, 0xe4, 0x67, 0xce, 0x69, 0x3f, 0x8f, 0x90, 0x47, 0xc4, 0x99, 0x8d, 0xc2, 0x90,
	0xd1, 0x01, 0xf2, 0x6c, 0x2e, 0x90, 0x88, 0xb8, 0xa6, 0x79, 0x78, 0x5e, 0x1a, 0x87, 0xf0, 0x94,
	0x89, 0x61, 0xc4, 0x53, 0xef, 0xef, 0x96, 0x65, 0x1a, 0xb1, 0x7f, 0xaf, 0x2c, 0x6a, 0x80, 0x3c,
	0xe2, 0x20, 0x41, 0x68, 0x30, 0x4a, 0xf0, 0x65, 0x31, 0x81, 0x8b, 0xa9, 0x2d, 0x10, 0x73, 0xb1,
	0x20, 0x81, 0x6b, 0x33, 0xcc, 0x05, 0x23, 0xfd, 0x98, 0x45, 0xc3, 0xbb, 0xc5, 0x70, 0x15, 0xf2,
	0x9c, 0xd8, 0x7d, 0x56, 0x0a, 0xcb, 0xf0, 0x80, 0xe0, 0x17, 0x65, 0x4f, 0xcd, 0x18, 0x65, 0x39,
	0xc7, 0x96, 0x32, 0x4d, 0x70, 0x33, 0x21, 0x08, 0x89, 0x79, 0x4a, 0xb0, 0xe7, 0xd8, 0x27, 0xf8,
	0x19, 0x1a, 0x90, 0x54, 0xe1, 0x6a, 0x46, 0x21, 0x49, 0x65, 0x2d, 0x7a, 0x5f, 0x8b, 0xe4, 0xd7,
	0x49, 0x74, 0x6a, 0xbe, 0x60, 0x28, 0x0c, 0x31, 0x4b, 0x9c, 0xbb, 0x9e, 0x81, 0xa2, 0x20, 0xa0,
	0x42, 0x9a, 0xd7, 0xd2, 0xb5, 0x37, 0x17, 0xc1, 0xc2, 0x03, 0x8c, 0x9d, 0x7d, 0x81, 0x7d, 0xf8,
	0x18, 0x34, 0x13, 0x72, 0x3b, 0x40, 0x3e, 0x6e, 0x57, 0x56, 0x2b, 0x1b, 0x97, 0xb6, 0x3f, 0x7c,
	0xdd, 0x9b, 0x7b, 0xd7, 0xfb, 0x00, 0xdc, 0x1a, 0x56, 0x94, 0x5e, 0x85, 0x84, 0x1b, 0x7d, 0xea,
	0x9b, 0x09, 0x83, 0xd5, 0x48, 0xf0, 0x8f, 0x91, 0x8f, 0xe1, 0xf7, 0xe0, 0x42, 0x7c, 0xf4, 0x76,
	0x75, 0xb5, 0xb2, 0x51, 0xef, 0x5c, 0xd7, 0x28, 0x23, 0xf1, 0xd4, 0x78, 0x22, 0x18, 0x09, 0xdc,
	0x23, 0xe4, 0x45, 0x78, 0x7b, 0x5d, 0x1a, 0xb9, 0x09, 0x6e, 0x14, 0x1a, 0xb1, 0x24, 0x21, 0xbc,
	0x0d, 0xaa, 0xc4, 0x69, 0xd7, 0x24, 0xed, 0xb5, 0x09, 0xda, 0xfd, 0x40, 0x7c, 0x7a, 0x57, 0xb1,
	0xd6, 0x5e, 0xf7, 0x6a, 0x56, 0x95, 0x38, 0x70, 0x07, 0x2c, 0x72, 0x81, 0x98, 0xb0, 0x1d, 0x24,
	0xb0, 0x2d, 0x88, 0x8f, 0xdb, 0x17, 0x66, 0x7b, 0x65, 0x35, 0x25, 0x68, 0x07, 0x09, 0x7c, 0x48,
	0x7c, 0x0c, 0xb7, 0x40, 0x13, 0x07, 0x4e, 0x86, 0x63, 0xae, 0x04, 0x47, 0x1d, 0x07, 0x4e, 0xca,
	0xe0, 0x80, 0x25, 0x24, 0x04, 0x23, 0x27, 0x91, 0xc0, 0x71, 0x36, 0x44, 0x98, 0xb7, 0xe7, 0x57,
	0x6b, 0x1b, 0xf5, 0xce, 0xe7, 0xc6, 0xcc, 0xde, 0x65, 0x24, 0x71, 0xee, 0x25, 0x14, 0xca, 0xc2,
	0x22, 0x1a, 0xf9, 0xe6, 0xf0, 0xb7, 0x0a, 0xb8, 0x9a, 0x5b, 0x2a, 0xed, 0x8b, 0xab, 0x95, 0x8d,
	0x56, 0xc7, 0xca, 0xb5, 0x27, 0xf3, 0xdd, 0xd8, 0xc3, 0xf4, 0x30, 0x81, 0x5b, 0x43, 0xf4, 0x6e,
	0x10, 0xf9, 0x79, 0x32, 0x6b, 0xd9, 0x9d, 0x2e, 0x80, 0x7d, 0x70, 0x25, 0x62, 0x9e, 0x3d, 0xde,
	0x5b, 0x79, 0x7b, 0x41, 0x9e, 0xdd, 0xcc, 0xf5, 0x45, 0x77, 0xd4, 0xfb, 0x12, 0x78, 0x90, 0xe0,
	0xac, 0xff, 0x45, 0xcc, 0x1b, 0xdb, 0xe3, 0xf0, 0x47, 0x30, 0xaf, 0xca, 0xb2, 0x7d, 0x49, 0x9e,
	0x70, 0x6b, 0xc6, 0x09, 0x93, 0x68, 0x3e, 0x91, 0x20, 0x79, 0xb0, 0xd1, 0x2d, 0x95, 0x3e, 0x9a,
	0x14, 0x3e, 0x03, 0x0d, 0xdd, 0x03, 0x48, 0x70, 0x4a, 0x79, 0x1b, 0x48, 0xd7, 0xb7, 0xce, 0x71,
	0x6d, 0x07, 0x1e, 0xea, 0xe3, 0x67, 0xd4, 0x73, 0x30, 0x3b, 0x90, 0x4c, 0xfb, 0xc1, 0x29, 0x55,
	0x46, 0xea, 0x61, 0xba, 0xc1, 0xbb, 0xd6, 0xdb, 0xde, 0xb7, 0x25, 0xaa, 0x0d, 0x7e, 0xa4, 0xe2,
	0x89, 0x19, 0x37, 0x5f, 0x26, 0xcb, 0x57, 0xb2, 0xdb, 0xc4, 0x62, 0x6e, 0xbe, 0x4c, 0x1b, 0xcf,
	0xab, 0xb5, 0xbf, 0xe7, 0xc0, 0x7b, 0xd3, 0xd3, 0x07, 0xee, 0x81, 0xcb, 0x52, 0x71, 0x98, 0x98,
	0xc4, 0x91, 0xa5, 0x5f, 0x5c, 0x5c, 0xd6, 0x62, 0x8c, 0x4a, 0xb9, 0xf6, 0x9d, 0xb8, 0x3c, 0x48,
	0x20, 0xb0, 0x8b, 0x99, 0x4a, 0x6d, 0x5d, 0xf8, 0x85, 0x24, 0x0d, 0x8d, 0x50, 0xae, 0xdc, 0x03,
	0xcd, 0x13, 0x4a, 0x3d, 0x8c, 0x02, 0xcd, 0xa0, 0x6a, 0x7c, 0x65, 0x82, 0x61, 0x9b, 0x52, 0x4f,
	0x13, 0x68, 0x40, 0x42, 0xd0, 0xe0, 0xb2, 0xf6, 0x34, 0xbe, 0x4c, 0x91, 0xd7, 0xf9, 0xf0, 0x23,
	0x26, 0x70, 0x68, 0x74, 0xe2, 0xe9, 0xea, 0xcc, 0xad, 0xf0, 0x1d, 0xa9, 0xa4, 0x09, 0x9c, 0xe1,
	0x07, 0x7c, 0x00, 0xea, 0x21, 0x23, 0xfd, 0x04, 0x3f, 0x2f, 0xf1, 0xeb, 0xb3, 0x12, 0xfc, 0x11,
	0x0d, 0xf0, 0x99, 0x05, 0x24, 0x52, 0xf1, 0x6c, 0x83, 0xd6, 0x48, 0x30, 0x79, 0xfb, 0xa2, 0x4c,
	0xb8, 0xc2, 0x68, 0x36, 0xb3, 0xd1, 0xe4, 0xb0, 0x07, 0x5a, 0x23, 0xe1, 0x4c, 0xea, 0xad, 0x28,
	0x9e, 0xcd, 0x6c, 0x3c, 0x63, 0x8a, 0x66, 0x36, 0xa0, 0x71, 0x6d, 0xd5, 0x66, 0x46, 0xb4, 0x91,
	0x89, 0xa8, 0xa4, 0xc8, 0x86, 0x34, 0xa9, 0x9c, 0xe2, 0x98, 0x36, 0x32, 0x31, 0xe5, 0x6b, 0x6f,
	0x16, 0xc0, 0x8d, 0xc2, 0x2a, 0x82, 0x5f, 0x83, 0xa5, 0x70, 0x28, 0xb0, 0xc5, 0x59, 0x88, 0x8b,
	0x72, 0xf8, 0x4e, 0x27, 0x33, 0x20, 0x16, 0x33, 0xc8, 0xc3, 0xb3, 0x10, 0xc3, 0xa7, 0x60, 0x45,
	0x56, 0x84, 0x8f, 0xc2, 0x50, 0x77, 0xcf, 0xcc, 0x54, 0x2c, 0x33, 0xce, 0x24, 0xef, 0x72, 0x4c,
	0xf2, 0x48, 0x71, 0x58, 0xd9, 0xc1, 0xc8, 0xe2, 0x41, 0x9b, 0x79, 0x47, 0xc8, 0x34, 0x6f, 0x75,
	0x1e, 0xce, 0x68, 0x58, 0xea, 0xb8, 0x96, 0x44, 0x66, 0x9a, 0xd6, 0xe4, 0xb6, 0x32, 0xdf, 0x60,
	0x99, 0x2d, 0xf8, 0x33, 0x58, 0x1c, 0x7b, 0xf7, 0xc8, 0xe2, 0x68, 0x75, 0xbe, 0x29, 0x65, 0xb5,
	0xa7, 0xb1, 0x13, 0x76, 0x47, 0x05, 0xca, 0x72, 0x0b, 0x8d, 0x6c, 0x42, 0x17, 0xfc, 0x5f, 0xb7,
	0x4e, 0x41, 0x43, 0xd2, 0xb7, 0x71, 0x20, 0x18, 0xc1, 0xbc, 0x3d, 0x27, 0x13, 0xe1, 0xf6, 0xac,
	0xe2, 0x50, 0x86, 0x0e, 0x63, 0xe8, 0x6e, 0x20, 0xd8, 0x99, 0x32, 0x02, 0xc3, 0xd1, 0x6d, 0x82,
	0x39, 0xfc, 0xb5, 0x02, 0x2e, 0x4f, 0x3c, 0x2d, 0x65, 0x0d, 0xb6, 0x3a, 0x87, 0x25, 0xc7, 0xc1,
	0x51, 0x8a, 0x9f, 0x32, 0x18, 0xc6, 0x85, 0xca, 0x95, 0xa5, 0xc1, 0xd8, 0x36, 0xf4, 0x46, 0xfc,
	0x50, 0xef, 0x40, 0x5d, 0xc0, 0xdd, 0x73, 0x4c, 0x8c, 0xa1, 0xb9, 0xdd, 0x98, 0x62, 0xc2, 0x9a,
	0xdc, 0xe5, 0xf0, 0xf7, 0x0a, 0x58, 0xce, 0xf9, 0x61, 0xd0, 0x5e, 0x90, 0x87, 0x7f, 0x5a, 0xf2,
	0xf0, 0xdf, 0x29, 0x96, 0x29, 0xb7, 0x5d, 0xa8, 0xa1, 0x1c, 0xbb, 0xf2, 0x7c, 0x9a, 0x0c, 0xfe,
	0x59, 0x01, 0xd7, 0xf2, 0x7f, 0x6f, 0xa8, 0x8e, 0xd2, 0xea, 0x38, 0xe7, 0xf3, 0x70, 0x67, 0x48,
	0x64, 0x49, 0x9e, 0x69, 0x4e, 0x4e, 0x28, 0x29, 0x3f, 0xaf, 0x3e, 0xcf, 0x11, 0xf3, 0xb5, 0x7f,
	0xab, 0x60, 0x39, 0x27, 0xf8, 0xf0, 0x97, 0x0a, 0x58, 0x1a, 0xbf, 0x54, 0xd9, 0x63, 0x5a, 0x9d,
	0x27, 0xf9, 0xce, 0xcb, 0x1b, 0xca, 0xbb, 0xd0, 0x9c, 0xdc, 0xca, 0x5c, 0xf6, 0xe2, 0xd8, 0x65,
	0xc3, 0xfb, 0xa0, 0xee, 0x60, 0xde, 0x67, 0x24, 0x94, 0x8f, 0xb9, 0xd2, 0xcd, 0x28, 0x8b, 0x82,
	0x8f, 0x01, 0x9c, 0x18, 0xf9, 0x71, 0x17, 0xaa, 0x95, 0x7a, 0x50, 0x2f, 0x8d, 0x0d, 0x7e, 0x0e,
	0xb7, 0x00, 0xc0, 0x3f, 0x09, 0x86, 0xe4, 0xd3, 0xa8, 0xcc, 0xab, 0x58, 0x11, 0x5d, 0x92, 0x20,
	0xf9, 0x0a, 0x7a, 0x57, 0x01, 0xeb, 0x7d, 0xea, 0xcf, 0xae, 0x8d, 0xed, 0x66, 0x3a, 0x08, 0x62,
	0xde, 0x83, 0xca, 0x0f, 0x5f, 0x69, 0x8c, 0x4b, 0x3d, 0x14, 0xb8, 0x06, 0x65, 0xae, 0xe9, 0xe2,
	0x40, 0x5a, 0x35, 0x87, 0x4f, 0xa7, 0x82, 0xbf, 0x11, 0xbe, 0x48, 0x57, 0x7f, 0x54, 0x6b, 0x7b,
	0xbd, 0xde, 0x5f, 0xd5, 0x5b, 0x7b, 0x8a, 0xb2, 0xe7, 0x70, 0x43, 0x2d, 0xe3, 0xd5, 0xd1, 0xa6,
	0x91, 0xb4, 0x71, 0xfe, 0x4f, 0xa2, 0x73, 0xdc, 0x73, 0xf8, 0x71, 0xaa, 0x73, 0x7c, 0xb4, 0x79,
	0x9c, 0xea, 0xbc, 0xad, 0xae, 0x2b, 0x41, 0xb7, 0xdb, 0x73, 0x78, 0xb7, 0x9b, 0x6a, 0x75, 0xbb,
	0x47, 0x9b, 0xdd, 0x6e, 0xaa, 0x77, 0x32, 0x2f, 0x9d, 0xbd, 0xf3, 0x5f, 0x00, 0x00, 0x00, 0xff,
	0xff, 0x21, 0x25, 0x4f, 0xae, 0xf2, 0x10, 0x00, 0x00,
}