File: ad_group_ad.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 (231 lines) | stat: -rw-r--r-- 11,390 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
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v1/resources/ad_group_ad.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

// An ad group ad.
type AdGroupAd struct {
	// Immutable. The resource name of the ad.
	// Ad group ad resource names have the form:
	//
	// `customers/{customer_id}/adGroupAds/{ad_group_id}~{ad_id}`
	ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
	// The status of the ad.
	Status enums.AdGroupAdStatusEnum_AdGroupAdStatus `protobuf:"varint,3,opt,name=status,proto3,enum=google.ads.googleads.v1.enums.AdGroupAdStatusEnum_AdGroupAdStatus" json:"status,omitempty"`
	// Immutable. The ad group to which the ad belongs.
	AdGroup *wrappers.StringValue `protobuf:"bytes,4,opt,name=ad_group,json=adGroup,proto3" json:"ad_group,omitempty"`
	// Immutable. The ad.
	Ad *Ad `protobuf:"bytes,5,opt,name=ad,proto3" json:"ad,omitempty"`
	// Output only. Policy information for the ad.
	PolicySummary *AdGroupAdPolicySummary `protobuf:"bytes,6,opt,name=policy_summary,json=policySummary,proto3" json:"policy_summary,omitempty"`
	// Output only. Overall ad strength for this ad group ad.
	AdStrength           enums.AdStrengthEnum_AdStrength `protobuf:"varint,7,opt,name=ad_strength,json=adStrength,proto3,enum=google.ads.googleads.v1.enums.AdStrengthEnum_AdStrength" json:"ad_strength,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                        `json:"-"`
	XXX_unrecognized     []byte                          `json:"-"`
	XXX_sizecache        int32                           `json:"-"`
}

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

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

var xxx_messageInfo_AdGroupAd proto.InternalMessageInfo

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

func (m *AdGroupAd) GetStatus() enums.AdGroupAdStatusEnum_AdGroupAdStatus {
	if m != nil {
		return m.Status
	}
	return enums.AdGroupAdStatusEnum_UNSPECIFIED
}

func (m *AdGroupAd) GetAdGroup() *wrappers.StringValue {
	if m != nil {
		return m.AdGroup
	}
	return nil
}

func (m *AdGroupAd) GetAd() *Ad {
	if m != nil {
		return m.Ad
	}
	return nil
}

func (m *AdGroupAd) GetPolicySummary() *AdGroupAdPolicySummary {
	if m != nil {
		return m.PolicySummary
	}
	return nil
}

func (m *AdGroupAd) GetAdStrength() enums.AdStrengthEnum_AdStrength {
	if m != nil {
		return m.AdStrength
	}
	return enums.AdStrengthEnum_UNSPECIFIED
}

// Contains policy information for an ad.
type AdGroupAdPolicySummary struct {
	// Output only. The list of policy findings for this ad.
	PolicyTopicEntries []*common.PolicyTopicEntry `protobuf:"bytes,1,rep,name=policy_topic_entries,json=policyTopicEntries,proto3" json:"policy_topic_entries,omitempty"`
	// Output only. Where in the review process this ad is.
	ReviewStatus enums.PolicyReviewStatusEnum_PolicyReviewStatus `protobuf:"varint,2,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 this ad, calculated based on the status of
	// its individual policy topic entries.
	ApprovalStatus       enums.PolicyApprovalStatusEnum_PolicyApprovalStatus `protobuf:"varint,3,opt,name=approval_status,json=approvalStatus,proto3,enum=google.ads.googleads.v1.enums.PolicyApprovalStatusEnum_PolicyApprovalStatus" json:"approval_status,omitempty"`
	XXX_NoUnkeyedLiteral struct{}                                            `json:"-"`
	XXX_unrecognized     []byte                                              `json:"-"`
	XXX_sizecache        int32                                               `json:"-"`
}

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

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

var xxx_messageInfo_AdGroupAdPolicySummary proto.InternalMessageInfo

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

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

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

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

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

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