File: campaign_feed.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 (168 lines) | stat: -rw-r--r-- 8,272 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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v1/resources/campaign_feed.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"
	_ "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 campaign feed.
type CampaignFeed struct {
	// Immutable. The resource name of the campaign feed.
	// Campaign feed resource names have the form:
	//
	// `customers/{customer_id}/campaignFeeds/{campaign_id}~{feed_id}
	ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
	// Immutable. The feed to which the CampaignFeed belongs.
	Feed *wrappers.StringValue `protobuf:"bytes,2,opt,name=feed,proto3" json:"feed,omitempty"`
	// Immutable. The campaign to which the CampaignFeed belongs.
	Campaign *wrappers.StringValue `protobuf:"bytes,3,opt,name=campaign,proto3" json:"campaign,omitempty"`
	// Indicates which placeholder types the feed may populate under the connected
	// campaign. Required.
	PlaceholderTypes []enums.PlaceholderTypeEnum_PlaceholderType `protobuf:"varint,4,rep,packed,name=placeholder_types,json=placeholderTypes,proto3,enum=google.ads.googleads.v1.enums.PlaceholderTypeEnum_PlaceholderType" json:"placeholder_types,omitempty"`
	// Matching function associated with the CampaignFeed.
	// The matching function is used to filter the set of feed items selected.
	// Required.
	MatchingFunction *common.MatchingFunction `protobuf:"bytes,5,opt,name=matching_function,json=matchingFunction,proto3" json:"matching_function,omitempty"`
	// Output only. Status of the campaign feed.
	// This field is read-only.
	Status               enums.FeedLinkStatusEnum_FeedLinkStatus `protobuf:"varint,6,opt,name=status,proto3,enum=google.ads.googleads.v1.enums.FeedLinkStatusEnum_FeedLinkStatus" json:"status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                `json:"-"`
	XXX_unrecognized     []byte                                  `json:"-"`
	XXX_sizecache        int32                                   `json:"-"`
}

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

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

var xxx_messageInfo_CampaignFeed proto.InternalMessageInfo

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

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

func (m *CampaignFeed) GetCampaign() *wrappers.StringValue {
	if m != nil {
		return m.Campaign
	}
	return nil
}

func (m *CampaignFeed) GetPlaceholderTypes() []enums.PlaceholderTypeEnum_PlaceholderType {
	if m != nil {
		return m.PlaceholderTypes
	}
	return nil
}

func (m *CampaignFeed) GetMatchingFunction() *common.MatchingFunction {
	if m != nil {
		return m.MatchingFunction
	}
	return nil
}

func (m *CampaignFeed) GetStatus() enums.FeedLinkStatusEnum_FeedLinkStatus {
	if m != nil {
		return m.Status
	}
	return enums.FeedLinkStatusEnum_UNSPECIFIED
}

func init() {
	proto.RegisterType((*CampaignFeed)(nil), "google.ads.googleads.v1.resources.CampaignFeed")
}

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

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