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
|
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v3/resources/campaign_experiment.proto
package resources
import (
fmt "fmt"
math "math"
proto "github.com/golang/protobuf/proto"
wrappers "github.com/golang/protobuf/ptypes/wrappers"
enums "google.golang.org/genproto/googleapis/ads/googleads/v3/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 A/B experiment that compares the performance of the base campaign
// (the control) and a variation of that campaign (the experiment).
type CampaignExperiment struct {
// Immutable. The resource name of the campaign experiment.
// Campaign experiment resource names have the form:
//
// `customers/{customer_id}/campaignExperiments/{campaign_experiment_id}`
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
// Output only. The ID of the campaign experiment.
//
// This field is read-only.
Id *wrappers.Int64Value `protobuf:"bytes,2,opt,name=id,proto3" json:"id,omitempty"`
// Immutable. The campaign draft with staged changes to the base campaign.
CampaignDraft *wrappers.StringValue `protobuf:"bytes,3,opt,name=campaign_draft,json=campaignDraft,proto3" json:"campaign_draft,omitempty"`
// The name of the campaign experiment.
//
// This field is required when creating new campaign experiments
// and must not conflict with the name of another non-removed
// campaign experiment or campaign.
//
// It must not contain any null (code point 0x0), NL line feed
// (code point 0xA) or carriage return (code point 0xD) characters.
Name *wrappers.StringValue `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
// The description of the experiment.
Description *wrappers.StringValue `protobuf:"bytes,5,opt,name=description,proto3" json:"description,omitempty"`
// Immutable. Share of traffic directed to experiment as a percent (must be between 1 and
// 99 inclusive. Base campaign receives the remainder of the traffic
// (100 - traffic_split_percent). Required for create.
TrafficSplitPercent *wrappers.Int64Value `protobuf:"bytes,6,opt,name=traffic_split_percent,json=trafficSplitPercent,proto3" json:"traffic_split_percent,omitempty"`
// Immutable. Determines the behavior of the traffic split.
TrafficSplitType enums.CampaignExperimentTrafficSplitTypeEnum_CampaignExperimentTrafficSplitType `protobuf:"varint,7,opt,name=traffic_split_type,json=trafficSplitType,proto3,enum=google.ads.googleads.v3.enums.CampaignExperimentTrafficSplitTypeEnum_CampaignExperimentTrafficSplitType" json:"traffic_split_type,omitempty"`
// Output only. The experiment campaign, as opposed to the base campaign.
ExperimentCampaign *wrappers.StringValue `protobuf:"bytes,8,opt,name=experiment_campaign,json=experimentCampaign,proto3" json:"experiment_campaign,omitempty"`
// Output only. The status of the campaign experiment. This field is read-only.
Status enums.CampaignExperimentStatusEnum_CampaignExperimentStatus `protobuf:"varint,9,opt,name=status,proto3,enum=google.ads.googleads.v3.enums.CampaignExperimentStatusEnum_CampaignExperimentStatus" json:"status,omitempty"`
// Output only. The resource name of the long-running operation that can be used to poll
// for completion of experiment create or promote. The most recent long
// running operation is returned.
LongRunningOperation *wrappers.StringValue `protobuf:"bytes,10,opt,name=long_running_operation,json=longRunningOperation,proto3" json:"long_running_operation,omitempty"`
// Date when the campaign experiment starts. By default, the experiment starts
// now or on the campaign's start date, whichever is later. If this field is
// set, then the experiment starts at the beginning of the specified date in
// the customer's time zone. Cannot be changed once the experiment starts.
//
// Format: YYYY-MM-DD
// Example: 2019-03-14
StartDate *wrappers.StringValue `protobuf:"bytes,11,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
// Date when the campaign experiment ends. By default, the experiment ends on
// the campaign's end date. If this field is set, then the experiment ends at
// the end of the specified date in the customer's time zone.
//
// Format: YYYY-MM-DD
// Example: 2019-04-18
EndDate *wrappers.StringValue `protobuf:"bytes,12,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *CampaignExperiment) Reset() { *m = CampaignExperiment{} }
func (m *CampaignExperiment) String() string { return proto.CompactTextString(m) }
func (*CampaignExperiment) ProtoMessage() {}
func (*CampaignExperiment) Descriptor() ([]byte, []int) {
return fileDescriptor_241b735b09714cee, []int{0}
}
func (m *CampaignExperiment) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_CampaignExperiment.Unmarshal(m, b)
}
func (m *CampaignExperiment) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_CampaignExperiment.Marshal(b, m, deterministic)
}
func (m *CampaignExperiment) XXX_Merge(src proto.Message) {
xxx_messageInfo_CampaignExperiment.Merge(m, src)
}
func (m *CampaignExperiment) XXX_Size() int {
return xxx_messageInfo_CampaignExperiment.Size(m)
}
func (m *CampaignExperiment) XXX_DiscardUnknown() {
xxx_messageInfo_CampaignExperiment.DiscardUnknown(m)
}
var xxx_messageInfo_CampaignExperiment proto.InternalMessageInfo
func (m *CampaignExperiment) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
func (m *CampaignExperiment) GetId() *wrappers.Int64Value {
if m != nil {
return m.Id
}
return nil
}
func (m *CampaignExperiment) GetCampaignDraft() *wrappers.StringValue {
if m != nil {
return m.CampaignDraft
}
return nil
}
func (m *CampaignExperiment) GetName() *wrappers.StringValue {
if m != nil {
return m.Name
}
return nil
}
func (m *CampaignExperiment) GetDescription() *wrappers.StringValue {
if m != nil {
return m.Description
}
return nil
}
func (m *CampaignExperiment) GetTrafficSplitPercent() *wrappers.Int64Value {
if m != nil {
return m.TrafficSplitPercent
}
return nil
}
func (m *CampaignExperiment) GetTrafficSplitType() enums.CampaignExperimentTrafficSplitTypeEnum_CampaignExperimentTrafficSplitType {
if m != nil {
return m.TrafficSplitType
}
return enums.CampaignExperimentTrafficSplitTypeEnum_UNSPECIFIED
}
func (m *CampaignExperiment) GetExperimentCampaign() *wrappers.StringValue {
if m != nil {
return m.ExperimentCampaign
}
return nil
}
func (m *CampaignExperiment) GetStatus() enums.CampaignExperimentStatusEnum_CampaignExperimentStatus {
if m != nil {
return m.Status
}
return enums.CampaignExperimentStatusEnum_UNSPECIFIED
}
func (m *CampaignExperiment) GetLongRunningOperation() *wrappers.StringValue {
if m != nil {
return m.LongRunningOperation
}
return nil
}
func (m *CampaignExperiment) GetStartDate() *wrappers.StringValue {
if m != nil {
return m.StartDate
}
return nil
}
func (m *CampaignExperiment) GetEndDate() *wrappers.StringValue {
if m != nil {
return m.EndDate
}
return nil
}
func init() {
proto.RegisterType((*CampaignExperiment)(nil), "google.ads.googleads.v3.resources.CampaignExperiment")
}
func init() {
proto.RegisterFile("google/ads/googleads/v3/resources/campaign_experiment.proto", fileDescriptor_241b735b09714cee)
}
var fileDescriptor_241b735b09714cee = []byte{
// 697 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xdd, 0x6e, 0xd3, 0x3c,
0x18, 0xc7, 0xd5, 0x76, 0x5f, 0xf5, 0x3e, 0xf4, 0xca, 0x7b, 0xdf, 0x97, 0x30, 0x26, 0xd8, 0x40,
0x43, 0x45, 0x08, 0x67, 0x5a, 0x11, 0x48, 0x99, 0x34, 0x29, 0x65, 0xd3, 0x04, 0x07, 0x30, 0x65,
0x55, 0x41, 0xa8, 0x52, 0xe4, 0x25, 0x6e, 0x66, 0xa9, 0xb1, 0x8d, 0xed, 0x8c, 0x4d, 0x68, 0x67,
0xdc, 0x05, 0x67, 0x9c, 0xc1, 0xa5, 0x70, 0x15, 0x3b, 0xde, 0x25, 0xec, 0x08, 0x25, 0x4e, 0xd2,
0x42, 0x19, 0xed, 0xce, 0x9e, 0xe6, 0xf9, 0xff, 0x9e, 0x2f, 0xdb, 0x4f, 0xc1, 0x76, 0xc4, 0x79,
0xd4, 0x27, 0x36, 0x0e, 0x95, 0x6d, 0xcc, 0xd4, 0x3a, 0x69, 0xda, 0x92, 0x28, 0x9e, 0xc8, 0x80,
0x28, 0x3b, 0xc0, 0xb1, 0xc0, 0x34, 0x62, 0x3e, 0x39, 0x15, 0x44, 0xd2, 0x98, 0x30, 0x8d, 0x84,
0xe4, 0x9a, 0xc3, 0x75, 0x43, 0x20, 0x1c, 0x2a, 0x54, 0xc2, 0xe8, 0xa4, 0x89, 0x4a, 0x78, 0x65,
0xe7, 0xba, 0xf8, 0x84, 0x25, 0xf1, 0x1f, 0x63, 0xfb, 0x4a, 0x63, 0x9d, 0x28, 0x93, 0x62, 0xe5,
0xd5, 0xcd, 0x79, 0x2d, 0x71, 0xaf, 0x47, 0x03, 0x5f, 0x89, 0x3e, 0xd5, 0xbe, 0x3e, 0x13, 0x24,
0x8f, 0x75, 0xaf, 0x88, 0x25, 0xa8, 0xdd, 0xa3, 0xa4, 0x1f, 0xfa, 0x47, 0xe4, 0x18, 0x9f, 0x50,
0x2e, 0x73, 0xc1, 0xed, 0x21, 0x41, 0xd1, 0x42, 0xee, 0xba, 0x9b, 0xbb, 0xb2, 0x5f, 0x47, 0x49,
0xcf, 0xfe, 0x28, 0xb1, 0x10, 0x44, 0x16, 0x75, 0xae, 0x0e, 0xa1, 0x98, 0x31, 0xae, 0xb1, 0xa6,
0x9c, 0xe5, 0xde, 0xfb, 0xdf, 0xea, 0x00, 0xbe, 0xc8, 0x4b, 0xdd, 0x2b, 0x2b, 0x85, 0xef, 0xc0,
0x62, 0x91, 0xc6, 0x67, 0x38, 0x26, 0x56, 0x65, 0xad, 0xd2, 0xa8, 0xb7, 0x9a, 0x17, 0xee, 0xf4,
0x95, 0xfb, 0x04, 0x3c, 0x1e, 0xcc, 0x34, 0xb7, 0x04, 0x55, 0x28, 0xe0, 0xb1, 0x3d, 0x1a, 0xcb,
0x5b, 0x28, 0x22, 0xbd, 0xc6, 0x31, 0x81, 0x9b, 0xa0, 0x4a, 0x43, 0xab, 0xba, 0x56, 0x69, 0xcc,
0x6f, 0xdd, 0xc9, 0x69, 0x54, 0xd4, 0x8e, 0x5e, 0x32, 0xfd, 0xec, 0x69, 0x07, 0xf7, 0x13, 0xd2,
0xaa, 0x5d, 0xb8, 0x35, 0xaf, 0x4a, 0x43, 0xa8, 0xc0, 0x52, 0x39, 0xcc, 0x50, 0xe2, 0x9e, 0xb6,
0x6a, 0x19, 0xbd, 0x3a, 0x42, 0x1f, 0x6a, 0x49, 0x59, 0x64, 0x70, 0x94, 0x95, 0xda, 0x00, 0x0f,
0xc7, 0x96, 0xba, 0x9b, 0xc6, 0xf4, 0x16, 0x83, 0xe1, 0x9f, 0x70, 0x13, 0x4c, 0x65, 0x7d, 0x4f,
0x8d, 0x4f, 0xe5, 0x65, 0x4a, 0xb8, 0x03, 0xe6, 0x43, 0xa2, 0x02, 0x49, 0x45, 0x3a, 0x5f, 0x6b,
0x7a, 0x02, 0x70, 0x18, 0x80, 0x6d, 0xf0, 0xdf, 0xaf, 0xf7, 0x43, 0x10, 0x19, 0x10, 0xa6, 0xad,
0x99, 0x89, 0x66, 0x35, 0xed, 0x2d, 0xe7, 0xf8, 0x61, 0x4a, 0x1f, 0x18, 0x18, 0x7e, 0xa9, 0x00,
0x38, 0x7a, 0xed, 0xac, 0xd9, 0xb5, 0x4a, 0x63, 0x69, 0xeb, 0x18, 0x5d, 0xf7, 0x4c, 0xb2, 0x3b,
0x8c, 0x46, 0x0f, 0xb3, 0x3d, 0x94, 0xa2, 0x7d, 0x26, 0xc8, 0x1e, 0x4b, 0xe2, 0x09, 0x64, 0xa6,
0xc0, 0x7f, 0xf4, 0x6f, 0x9f, 0xe1, 0x29, 0x58, 0x1e, 0x7a, 0x1e, 0xc5, 0x09, 0x58, 0x73, 0x13,
0x9c, 0xef, 0xa3, 0x0b, 0xb7, 0x76, 0xe5, 0x3e, 0x00, 0xeb, 0x63, 0xcf, 0xd7, 0x83, 0x83, 0x1c,
0xc5, 0x37, 0xf8, 0x01, 0xcc, 0x98, 0xd7, 0x6c, 0xd5, 0xb3, 0x51, 0xb4, 0x6f, 0x3c, 0x8a, 0xc3,
0x0c, 0xbf, 0x66, 0x00, 0xc6, 0x69, 0xee, 0x70, 0x9e, 0x08, 0xbe, 0x05, 0xff, 0xf7, 0x39, 0x8b,
0x7c, 0x99, 0x30, 0x46, 0x59, 0xe4, 0x73, 0x41, 0x64, 0xf6, 0x16, 0x2d, 0x30, 0x41, 0xbf, 0x59,
0xa8, 0x7f, 0xd3, 0x00, 0x9e, 0xe1, 0xdf, 0x14, 0x38, 0xdc, 0x06, 0x40, 0x69, 0x2c, 0xb5, 0x1f,
0x62, 0x4d, 0xac, 0xf9, 0x09, 0x2e, 0x5e, 0x3d, 0xd3, 0xef, 0x62, 0x4d, 0xe0, 0x73, 0x30, 0x47,
0x58, 0x68, 0xd0, 0x85, 0x09, 0xd0, 0x59, 0xc2, 0xc2, 0x14, 0x74, 0xc4, 0xa5, 0x1b, 0xdf, 0x68,
0x11, 0xc0, 0x9d, 0x20, 0x51, 0x9a, 0xc7, 0x44, 0x2a, 0xfb, 0x53, 0x61, 0x9e, 0x97, 0x8b, 0x72,
0x20, 0x4c, 0xdd, 0xa3, 0xdb, 0xf3, 0xbc, 0xf5, 0xb9, 0x0a, 0x36, 0x02, 0x1e, 0xa3, 0xb1, 0xbb,
0xbd, 0x75, 0x6b, 0x34, 0xfb, 0x41, 0xda, 0xcc, 0x41, 0xe5, 0x7d, 0xbe, 0xb6, 0x51, 0xc4, 0xfb,
0x98, 0x45, 0x88, 0xcb, 0xc8, 0x8e, 0x08, 0xcb, 0x5a, 0xb5, 0x07, 0x2d, 0xfc, 0xe5, 0x5f, 0x67,
0xbb, 0xb4, 0xbe, 0x56, 0x6b, 0xfb, 0xae, 0xfb, 0xbd, 0xba, 0xbe, 0x6f, 0x42, 0xba, 0xa1, 0x42,
0xc6, 0x4c, 0xad, 0x4e, 0x13, 0x79, 0x85, 0xf2, 0x47, 0xa1, 0xe9, 0xba, 0xa1, 0xea, 0x96, 0x9a,
0x6e, 0xa7, 0xd9, 0x2d, 0x35, 0x97, 0xd5, 0x0d, 0xe3, 0x70, 0x1c, 0x37, 0x54, 0x8e, 0x53, 0xaa,
0x1c, 0xa7, 0xd3, 0x74, 0x9c, 0x52, 0x77, 0x34, 0x93, 0x15, 0xdb, 0xfc, 0x19, 0x00, 0x00, 0xff,
0xff, 0x9b, 0x5f, 0x19, 0x83, 0x21, 0x07, 0x00, 0x00,
}
|