blob: 2e89a8f6ff675453096e492be4c590e5360ec75b [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v3/resources/bidding_strategy.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/v3/common"
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
// A bidding strategy.
type BiddingStrategy struct {
// Immutable. The resource name of the bidding strategy.
// Bidding strategy resource names have the form:
//
// `customers/{customer_id}/biddingStrategies/{bidding_strategy_id}`
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
// Output only. The ID of the bidding strategy.
Id *wrappers.Int64Value `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
// The name of the bidding strategy.
// All bidding strategies within an account must be named distinctly.
//
// The length of this string should be between 1 and 255, inclusive,
// in UTF-8 bytes, (trimmed).
Name *wrappers.StringValue `protobuf:"bytes,4,opt,name=name,proto3" json:"name,omitempty"`
// Output only. The status of the bidding strategy.
//
// This field is read-only.
Status enums.BiddingStrategyStatusEnum_BiddingStrategyStatus `protobuf:"varint,15,opt,name=status,proto3,enum=google.ads.googleads.v3.enums.BiddingStrategyStatusEnum_BiddingStrategyStatus" json:"status,omitempty"`
// Output only. The type of the bidding strategy.
// Create a bidding strategy by setting the bidding scheme.
//
// This field is read-only.
Type enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,5,opt,name=type,proto3,enum=google.ads.googleads.v3.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"type,omitempty"`
// Output only. The number of campaigns attached to this bidding strategy.
//
// This field is read-only.
CampaignCount *wrappers.Int64Value `protobuf:"bytes,13,opt,name=campaign_count,json=campaignCount,proto3" json:"campaign_count,omitempty"`
// Output only. The number of non-removed campaigns attached to this bidding strategy.
//
// This field is read-only.
NonRemovedCampaignCount *wrappers.Int64Value `protobuf:"bytes,14,opt,name=non_removed_campaign_count,json=nonRemovedCampaignCount,proto3" json:"non_removed_campaign_count,omitempty"`
// The bidding scheme.
//
// Only one can be set.
//
// Types that are valid to be assigned to Scheme:
// *BiddingStrategy_EnhancedCpc
// *BiddingStrategy_TargetCpa
// *BiddingStrategy_TargetImpressionShare
// *BiddingStrategy_TargetRoas
// *BiddingStrategy_TargetSpend
Scheme isBiddingStrategy_Scheme `protobuf_oneof:"scheme"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *BiddingStrategy) Reset() { *m = BiddingStrategy{} }
func (m *BiddingStrategy) String() string { return proto.CompactTextString(m) }
func (*BiddingStrategy) ProtoMessage() {}
func (*BiddingStrategy) Descriptor() ([]byte, []int) {
return fileDescriptor_ac3d020c2b1960dc, []int{0}
}
func (m *BiddingStrategy) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_BiddingStrategy.Unmarshal(m, b)
}
func (m *BiddingStrategy) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_BiddingStrategy.Marshal(b, m, deterministic)
}
func (m *BiddingStrategy) XXX_Merge(src proto.Message) {
xxx_messageInfo_BiddingStrategy.Merge(m, src)
}
func (m *BiddingStrategy) XXX_Size() int {
return xxx_messageInfo_BiddingStrategy.Size(m)
}
func (m *BiddingStrategy) XXX_DiscardUnknown() {
xxx_messageInfo_BiddingStrategy.DiscardUnknown(m)
}
var xxx_messageInfo_BiddingStrategy proto.InternalMessageInfo
func (m *BiddingStrategy) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
func (m *BiddingStrategy) GetId() *wrappers.Int64Value {
if m != nil {
return m.Id
}
return nil
}
func (m *BiddingStrategy) GetName() *wrappers.StringValue {
if m != nil {
return m.Name
}
return nil
}
func (m *BiddingStrategy) GetStatus() enums.BiddingStrategyStatusEnum_BiddingStrategyStatus {
if m != nil {
return m.Status
}
return enums.BiddingStrategyStatusEnum_UNSPECIFIED
}
func (m *BiddingStrategy) GetType() enums.BiddingStrategyTypeEnum_BiddingStrategyType {
if m != nil {
return m.Type
}
return enums.BiddingStrategyTypeEnum_UNSPECIFIED
}
func (m *BiddingStrategy) GetCampaignCount() *wrappers.Int64Value {
if m != nil {
return m.CampaignCount
}
return nil
}
func (m *BiddingStrategy) GetNonRemovedCampaignCount() *wrappers.Int64Value {
if m != nil {
return m.NonRemovedCampaignCount
}
return nil
}
type isBiddingStrategy_Scheme interface {
isBiddingStrategy_Scheme()
}
type BiddingStrategy_EnhancedCpc struct {
EnhancedCpc *common.EnhancedCpc `protobuf:"bytes,7,opt,name=enhanced_cpc,json=enhancedCpc,proto3,oneof"`
}
type BiddingStrategy_TargetCpa struct {
TargetCpa *common.TargetCpa `protobuf:"bytes,9,opt,name=target_cpa,json=targetCpa,proto3,oneof"`
}
type BiddingStrategy_TargetImpressionShare struct {
TargetImpressionShare *common.TargetImpressionShare `protobuf:"bytes,48,opt,name=target_impression_share,json=targetImpressionShare,proto3,oneof"`
}
type BiddingStrategy_TargetRoas struct {
TargetRoas *common.TargetRoas `protobuf:"bytes,11,opt,name=target_roas,json=targetRoas,proto3,oneof"`
}
type BiddingStrategy_TargetSpend struct {
TargetSpend *common.TargetSpend `protobuf:"bytes,12,opt,name=target_spend,json=targetSpend,proto3,oneof"`
}
func (*BiddingStrategy_EnhancedCpc) isBiddingStrategy_Scheme() {}
func (*BiddingStrategy_TargetCpa) isBiddingStrategy_Scheme() {}
func (*BiddingStrategy_TargetImpressionShare) isBiddingStrategy_Scheme() {}
func (*BiddingStrategy_TargetRoas) isBiddingStrategy_Scheme() {}
func (*BiddingStrategy_TargetSpend) isBiddingStrategy_Scheme() {}
func (m *BiddingStrategy) GetScheme() isBiddingStrategy_Scheme {
if m != nil {
return m.Scheme
}
return nil
}
func (m *BiddingStrategy) GetEnhancedCpc() *common.EnhancedCpc {
if x, ok := m.GetScheme().(*BiddingStrategy_EnhancedCpc); ok {
return x.EnhancedCpc
}
return nil
}
func (m *BiddingStrategy) GetTargetCpa() *common.TargetCpa {
if x, ok := m.GetScheme().(*BiddingStrategy_TargetCpa); ok {
return x.TargetCpa
}
return nil
}
func (m *BiddingStrategy) GetTargetImpressionShare() *common.TargetImpressionShare {
if x, ok := m.GetScheme().(*BiddingStrategy_TargetImpressionShare); ok {
return x.TargetImpressionShare
}
return nil
}
func (m *BiddingStrategy) GetTargetRoas() *common.TargetRoas {
if x, ok := m.GetScheme().(*BiddingStrategy_TargetRoas); ok {
return x.TargetRoas
}
return nil
}
func (m *BiddingStrategy) GetTargetSpend() *common.TargetSpend {
if x, ok := m.GetScheme().(*BiddingStrategy_TargetSpend); ok {
return x.TargetSpend
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*BiddingStrategy) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*BiddingStrategy_EnhancedCpc)(nil),
(*BiddingStrategy_TargetCpa)(nil),
(*BiddingStrategy_TargetImpressionShare)(nil),
(*BiddingStrategy_TargetRoas)(nil),
(*BiddingStrategy_TargetSpend)(nil),
}
}
func init() {
proto.RegisterType((*BiddingStrategy)(nil), "google.ads.googleads.v3.resources.BiddingStrategy")
}
func init() {
proto.RegisterFile("google/ads/googleads/v3/resources/bidding_strategy.proto", fileDescriptor_ac3d020c2b1960dc)
}
var fileDescriptor_ac3d020c2b1960dc = []byte{
// 717 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x95, 0xdf, 0x4e, 0xdb, 0x3e,
0x14, 0xc7, 0xfb, 0x07, 0xf8, 0x81, 0xcb, 0x1f, 0x29, 0xfa, 0x4d, 0x64, 0x0c, 0x6d, 0x30, 0x09,
0xa9, 0x63, 0x93, 0x53, 0xd1, 0x6d, 0x1a, 0xe1, 0x2a, 0xad, 0x10, 0x05, 0x69, 0x08, 0xa5, 0xac,
0x17, 0x53, 0xa7, 0xc8, 0x4d, 0x4c, 0x1a, 0xad, 0xb1, 0x23, 0xdb, 0xe9, 0x84, 0x10, 0x17, 0x7b,
0x95, 0x5d, 0xee, 0x51, 0xf6, 0x14, 0x5c, 0xf3, 0x08, 0xbb, 0x9a, 0xe2, 0x38, 0x29, 0x2b, 0xed,
0x28, 0x77, 0xc7, 0x3d, 0xdf, 0xef, 0xe7, 0x1c, 0x1f, 0x3b, 0x2e, 0xf8, 0xe0, 0x53, 0xea, 0x0f,
0xb0, 0x81, 0x3c, 0x6e, 0xa4, 0x61, 0x12, 0x0d, 0xeb, 0x06, 0xc3, 0x9c, 0xc6, 0xcc, 0xc5, 0xdc,
0xe8, 0x05, 0x9e, 0x17, 0x10, 0xdf, 0xe1, 0x82, 0x21, 0x81, 0xfd, 0x4b, 0x18, 0x31, 0x2a, 0xa8,
0xb6, 0x9d, 0xca, 0x21, 0xf2, 0x38, 0xcc, 0x9d, 0x70, 0x58, 0x87, 0xb9, 0x73, 0xe3, 0xcd, 0x34,
0xb8, 0x4b, 0xc3, 0x90, 0x92, 0x8c, 0x9c, 0x02, 0x37, 0x0e, 0xa6, 0xa9, 0x31, 0x89, 0xc3, 0xfb,
0x6d, 0x38, 0x5c, 0x20, 0x11, 0x73, 0x65, 0xde, 0x7f, 0xa4, 0x59, 0x5c, 0x46, 0x58, 0x59, 0x5f,
0x64, 0xd6, 0x28, 0x30, 0x2e, 0x02, 0x3c, 0xf0, 0x9c, 0x1e, 0xee, 0xa3, 0x61, 0x40, 0x99, 0x12,
0x3c, 0xbd, 0x23, 0xc8, 0x36, 0xa7, 0x52, 0xcf, 0x55, 0x4a, 0xae, 0x7a, 0xf1, 0x85, 0xf1, 0x8d,
0xa1, 0x28, 0xc2, 0x2c, 0x6b, 0x6b, 0xf3, 0x8e, 0x15, 0x11, 0x42, 0x05, 0x12, 0x01, 0x25, 0x2a,
0xfb, 0xf2, 0x76, 0x11, 0xac, 0x35, 0xd2, 0xce, 0xda, 0xaa, 0x31, 0xed, 0x13, 0x58, 0xc9, 0x6a,
0x38, 0x04, 0x85, 0x58, 0x2f, 0x6e, 0x15, 0xab, 0x4b, 0x8d, 0xda, 0x8d, 0x35, 0xff, 0xdb, 0xda,
0x05, 0xd5, 0xd1, 0xa8, 0x55, 0x14, 0x05, 0x1c, 0xba, 0x34, 0x34, 0xc6, 0x40, 0xf6, 0x72, 0x86,
0x39, 0x45, 0x21, 0xd6, 0x6a, 0xa0, 0x14, 0x78, 0x7a, 0x79, 0xab, 0x58, 0xad, 0xec, 0x3d, 0x53,
0x56, 0x98, 0x75, 0x0d, 0x8f, 0x89, 0x78, 0xff, 0xb6, 0x83, 0x06, 0x31, 0x6e, 0x94, 0x6f, 0xac,
0xb2, 0x5d, 0x0a, 0x3c, 0xad, 0x06, 0xe6, 0x64, 0xfd, 0x39, 0xe9, 0xd9, 0xbc, 0xe7, 0x69, 0x0b,
0x16, 0x10, 0x5f, 0x9a, 0x6c, 0xa9, 0xd4, 0xbe, 0x82, 0x85, 0xf4, 0x4c, 0xf4, 0xb5, 0xad, 0x62,
0x75, 0x75, 0xef, 0x14, 0x4e, 0xbb, 0x22, 0xf2, 0x50, 0xe0, 0x58, 0xc7, 0x6d, 0xe9, 0x3d, 0x24,
0x71, 0x38, 0x39, 0x93, 0xb6, 0xa6, 0x4a, 0x68, 0x2e, 0x98, 0x4b, 0xce, 0x50, 0x9f, 0x97, 0xa5,
0x4e, 0x1e, 0x57, 0xea, 0xfc, 0x32, 0xc2, 0x93, 0x0a, 0x25, 0xbf, 0xa7, 0x65, 0x24, 0x5c, 0x3b,
0x02, 0xab, 0x2e, 0x0a, 0x23, 0x14, 0xf8, 0xc4, 0x71, 0x69, 0x4c, 0x84, 0xbe, 0x32, 0xe3, 0x04,
0x57, 0x32, 0x5f, 0x33, 0xb1, 0x69, 0x5f, 0xc0, 0x06, 0xa1, 0xc4, 0x61, 0x38, 0xa4, 0x43, 0xec,
0x39, 0x63, 0xd0, 0xd5, 0x19, 0xa1, 0xeb, 0x84, 0x12, 0x3b, 0x45, 0x34, 0xff, 0xc2, 0x9f, 0x81,
0x65, 0x4c, 0xfa, 0x88, 0xb8, 0x09, 0x3b, 0x72, 0xf5, 0xff, 0x24, 0xf0, 0xf5, 0xd4, 0xa1, 0xa4,
0xdf, 0x1f, 0x3c, 0x54, 0x9e, 0x66, 0xe4, 0xb6, 0x0a, 0x76, 0x05, 0x8f, 0x96, 0xda, 0x09, 0x00,
0x02, 0x31, 0x1f, 0x0b, 0xc7, 0x8d, 0x90, 0xbe, 0x24, 0x79, 0xaf, 0x1e, 0xe2, 0x9d, 0x4b, 0x47,
0x33, 0x42, 0xad, 0x82, 0xbd, 0x24, 0xb2, 0x85, 0x46, 0xc1, 0xba, 0x62, 0x05, 0x61, 0xc4, 0x30,
0xe7, 0x01, 0x25, 0x0e, 0xef, 0x23, 0x86, 0xf5, 0x9a, 0x04, 0xbf, 0x9b, 0x0d, 0x7c, 0x9c, 0xbb,
0xdb, 0x89, 0xb9, 0x55, 0xb0, 0x9f, 0x88, 0x49, 0x09, 0xed, 0x23, 0xa8, 0xa8, 0x82, 0x8c, 0x22,
0xae, 0x57, 0x64, 0x91, 0xdd, 0xd9, 0x8a, 0xd8, 0x14, 0xf1, 0x56, 0xc1, 0x56, 0xbb, 0x4f, 0x56,
0xc9, 0x74, 0x15, 0x8e, 0x47, 0x98, 0x78, 0xfa, 0xf2, 0x6c, 0xd3, 0x4d, 0x79, 0xed, 0xc4, 0x92,
0x4c, 0x57, 0x8c, 0x96, 0x66, 0xff, 0xd6, 0xc2, 0xb3, 0x7f, 0xca, 0xda, 0xbe, 0x1b, 0x73, 0x41,
0x43, 0xcc, 0xb8, 0x71, 0x95, 0x85, 0xd7, 0xd9, 0x9b, 0xa6, 0x54, 0x01, 0xe6, 0xc6, 0xd5, 0xf8,
0x33, 0x77, 0xdd, 0x58, 0x04, 0x0b, 0xdc, 0xed, 0xe3, 0x10, 0x37, 0xbe, 0x97, 0xc0, 0x8e, 0x4b,
0x43, 0xf8, 0xe0, 0xb3, 0xdd, 0xf8, 0x7f, 0xac, 0xfe, 0x59, 0x72, 0x1f, 0xcf, 0x8a, 0x9f, 0x4f,
0x94, 0xd5, 0xa7, 0x03, 0x44, 0x7c, 0x48, 0x99, 0x6f, 0xf8, 0x98, 0xc8, 0xdb, 0x6a, 0x8c, 0x76,
0xf0, 0x8f, 0xbf, 0x92, 0x83, 0x3c, 0xfa, 0x51, 0x2a, 0x1f, 0x59, 0xd6, 0xcf, 0xd2, 0xf6, 0x51,
0x8a, 0xb4, 0x3c, 0x0e, 0xd3, 0x30, 0x89, 0x3a, 0x75, 0x68, 0x67, 0xca, 0x5f, 0x99, 0xa6, 0x6b,
0x79, 0xbc, 0x9b, 0x6b, 0xba, 0x9d, 0x7a, 0x37, 0xd7, 0xdc, 0x96, 0x76, 0xd2, 0x84, 0x69, 0x5a,
0x1e, 0x37, 0xcd, 0x5c, 0x65, 0x9a, 0x9d, 0xba, 0x69, 0xe6, 0xba, 0xde, 0x82, 0x6c, 0xb6, 0xfe,
0x27, 0x00, 0x00, 0xff, 0xff, 0x36, 0xc8, 0x07, 0x9f, 0xf6, 0x06, 0x00, 0x00,
}