blob: 50ef7c585514240e1b13487c105e1f579dd40915 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v1/resources/shared_criterion.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 criterion belonging to a shared set.
type SharedCriterion struct {
// The resource name of the shared criterion.
// Shared set resource names have the form:
//
// `customers/{customer_id}/sharedCriteria/{shared_set_id}~{criterion_id}`
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
// The shared set to which the shared criterion belongs.
SharedSet *wrappers.StringValue `protobuf:"bytes,2,opt,name=shared_set,json=sharedSet,proto3" json:"shared_set,omitempty"`
// The ID of the criterion.
//
// This field is ignored for mutates.
CriterionId *wrappers.Int64Value `protobuf:"bytes,26,opt,name=criterion_id,json=criterionId,proto3" json:"criterion_id,omitempty"`
// The type of the criterion.
Type enums.CriterionTypeEnum_CriterionType `protobuf:"varint,4,opt,name=type,proto3,enum=google.ads.googleads.v1.enums.CriterionTypeEnum_CriterionType" json:"type,omitempty"`
// The criterion.
//
// Exactly one must be set.
//
// Types that are valid to be assigned to Criterion:
// *SharedCriterion_Keyword
// *SharedCriterion_YoutubeVideo
// *SharedCriterion_YoutubeChannel
// *SharedCriterion_Placement
// *SharedCriterion_MobileAppCategory
// *SharedCriterion_MobileApplication
Criterion isSharedCriterion_Criterion `protobuf_oneof:"criterion"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *SharedCriterion) Reset() { *m = SharedCriterion{} }
func (m *SharedCriterion) String() string { return proto.CompactTextString(m) }
func (*SharedCriterion) ProtoMessage() {}
func (*SharedCriterion) Descriptor() ([]byte, []int) {
return fileDescriptor_c8be09b18890bd33, []int{0}
}
func (m *SharedCriterion) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_SharedCriterion.Unmarshal(m, b)
}
func (m *SharedCriterion) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_SharedCriterion.Marshal(b, m, deterministic)
}
func (m *SharedCriterion) XXX_Merge(src proto.Message) {
xxx_messageInfo_SharedCriterion.Merge(m, src)
}
func (m *SharedCriterion) XXX_Size() int {
return xxx_messageInfo_SharedCriterion.Size(m)
}
func (m *SharedCriterion) XXX_DiscardUnknown() {
xxx_messageInfo_SharedCriterion.DiscardUnknown(m)
}
var xxx_messageInfo_SharedCriterion proto.InternalMessageInfo
func (m *SharedCriterion) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
func (m *SharedCriterion) GetSharedSet() *wrappers.StringValue {
if m != nil {
return m.SharedSet
}
return nil
}
func (m *SharedCriterion) GetCriterionId() *wrappers.Int64Value {
if m != nil {
return m.CriterionId
}
return nil
}
func (m *SharedCriterion) GetType() enums.CriterionTypeEnum_CriterionType {
if m != nil {
return m.Type
}
return enums.CriterionTypeEnum_UNSPECIFIED
}
type isSharedCriterion_Criterion interface {
isSharedCriterion_Criterion()
}
type SharedCriterion_Keyword struct {
Keyword *common.KeywordInfo `protobuf:"bytes,3,opt,name=keyword,proto3,oneof"`
}
type SharedCriterion_YoutubeVideo struct {
YoutubeVideo *common.YouTubeVideoInfo `protobuf:"bytes,5,opt,name=youtube_video,json=youtubeVideo,proto3,oneof"`
}
type SharedCriterion_YoutubeChannel struct {
YoutubeChannel *common.YouTubeChannelInfo `protobuf:"bytes,6,opt,name=youtube_channel,json=youtubeChannel,proto3,oneof"`
}
type SharedCriterion_Placement struct {
Placement *common.PlacementInfo `protobuf:"bytes,7,opt,name=placement,proto3,oneof"`
}
type SharedCriterion_MobileAppCategory struct {
MobileAppCategory *common.MobileAppCategoryInfo `protobuf:"bytes,8,opt,name=mobile_app_category,json=mobileAppCategory,proto3,oneof"`
}
type SharedCriterion_MobileApplication struct {
MobileApplication *common.MobileApplicationInfo `protobuf:"bytes,9,opt,name=mobile_application,json=mobileApplication,proto3,oneof"`
}
func (*SharedCriterion_Keyword) isSharedCriterion_Criterion() {}
func (*SharedCriterion_YoutubeVideo) isSharedCriterion_Criterion() {}
func (*SharedCriterion_YoutubeChannel) isSharedCriterion_Criterion() {}
func (*SharedCriterion_Placement) isSharedCriterion_Criterion() {}
func (*SharedCriterion_MobileAppCategory) isSharedCriterion_Criterion() {}
func (*SharedCriterion_MobileApplication) isSharedCriterion_Criterion() {}
func (m *SharedCriterion) GetCriterion() isSharedCriterion_Criterion {
if m != nil {
return m.Criterion
}
return nil
}
func (m *SharedCriterion) GetKeyword() *common.KeywordInfo {
if x, ok := m.GetCriterion().(*SharedCriterion_Keyword); ok {
return x.Keyword
}
return nil
}
func (m *SharedCriterion) GetYoutubeVideo() *common.YouTubeVideoInfo {
if x, ok := m.GetCriterion().(*SharedCriterion_YoutubeVideo); ok {
return x.YoutubeVideo
}
return nil
}
func (m *SharedCriterion) GetYoutubeChannel() *common.YouTubeChannelInfo {
if x, ok := m.GetCriterion().(*SharedCriterion_YoutubeChannel); ok {
return x.YoutubeChannel
}
return nil
}
func (m *SharedCriterion) GetPlacement() *common.PlacementInfo {
if x, ok := m.GetCriterion().(*SharedCriterion_Placement); ok {
return x.Placement
}
return nil
}
func (m *SharedCriterion) GetMobileAppCategory() *common.MobileAppCategoryInfo {
if x, ok := m.GetCriterion().(*SharedCriterion_MobileAppCategory); ok {
return x.MobileAppCategory
}
return nil
}
func (m *SharedCriterion) GetMobileApplication() *common.MobileApplicationInfo {
if x, ok := m.GetCriterion().(*SharedCriterion_MobileApplication); ok {
return x.MobileApplication
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*SharedCriterion) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*SharedCriterion_Keyword)(nil),
(*SharedCriterion_YoutubeVideo)(nil),
(*SharedCriterion_YoutubeChannel)(nil),
(*SharedCriterion_Placement)(nil),
(*SharedCriterion_MobileAppCategory)(nil),
(*SharedCriterion_MobileApplication)(nil),
}
}
func init() {
proto.RegisterType((*SharedCriterion)(nil), "google.ads.googleads.v1.resources.SharedCriterion")
}
func init() {
proto.RegisterFile("google/ads/googleads/v1/resources/shared_criterion.proto", fileDescriptor_c8be09b18890bd33)
}
var fileDescriptor_c8be09b18890bd33 = []byte{
// 592 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xdb, 0x6a, 0xd4, 0x40,
0x18, 0xc7, 0xdd, 0x6d, 0x6d, 0xdd, 0xe9, 0x09, 0x47, 0x2f, 0x42, 0x2d, 0xd2, 0x2a, 0x85, 0x82,
0x74, 0xe2, 0xae, 0x07, 0x24, 0x85, 0x42, 0x5a, 0xa4, 0x56, 0xa9, 0x94, 0xb4, 0xac, 0x28, 0x2b,
0x61, 0x36, 0xf9, 0x9a, 0x06, 0x93, 0x99, 0x61, 0x66, 0xd2, 0xb2, 0x97, 0xbe, 0x8a, 0x97, 0xde,
0xfb, 0x12, 0x3e, 0x8a, 0x4f, 0x21, 0x3b, 0x99, 0x49, 0xb1, 0x65, 0x5d, 0xbd, 0xfb, 0x32, 0xdf,
0xff, 0xf7, 0x9b, 0x43, 0x26, 0x41, 0xaf, 0x32, 0xce, 0xb3, 0x02, 0x7c, 0x9a, 0x2a, 0xbf, 0x2e,
0xc7, 0xd5, 0x45, 0xd7, 0x97, 0xa0, 0x78, 0x25, 0x13, 0x50, 0xbe, 0x3a, 0xa7, 0x12, 0xd2, 0x38,
0x91, 0xb9, 0x06, 0x99, 0x73, 0x46, 0x84, 0xe4, 0x9a, 0xe3, 0x8d, 0x3a, 0x4e, 0x68, 0xaa, 0x48,
0x43, 0x92, 0x8b, 0x2e, 0x69, 0xc8, 0xd5, 0xed, 0x49, 0xf2, 0x84, 0x97, 0x25, 0x67, 0xbe, 0x55,
0xd2, 0xda, 0xb8, 0xda, 0x9b, 0x14, 0x07, 0x56, 0x95, 0xca, 0x6f, 0x16, 0x10, 0xeb, 0x91, 0x00,
0xcb, 0x3c, 0xb4, 0x8c, 0x79, 0x1a, 0x56, 0x67, 0xfe, 0xa5, 0xa4, 0x42, 0x80, 0x54, 0xb6, 0xbf,
0xe6, 0x9c, 0x22, 0xf7, 0x29, 0x63, 0x5c, 0x53, 0x9d, 0x73, 0x66, 0xbb, 0x8f, 0x7e, 0xcc, 0xa1,
0x95, 0x13, 0xb3, 0xbd, 0x7d, 0x27, 0xc7, 0x8f, 0xd1, 0x92, 0xdb, 0x41, 0xcc, 0x68, 0x09, 0x5e,
0x6b, 0xbd, 0xb5, 0xd5, 0x89, 0x16, 0xdd, 0xe0, 0x7b, 0x5a, 0x02, 0xde, 0x41, 0xc8, 0x1e, 0x8b,
0x02, 0xed, 0xb5, 0xd7, 0x5b, 0x5b, 0x0b, 0xbd, 0x35, 0x7b, 0x0c, 0xc4, 0xad, 0x85, 0x9c, 0x68,
0x99, 0xb3, 0xac, 0x4f, 0x8b, 0x0a, 0xa2, 0x4e, 0x9d, 0x3f, 0x01, 0x8d, 0x77, 0xd1, 0xe2, 0xd5,
0x5e, 0xf2, 0xd4, 0x5b, 0x35, 0xf8, 0x83, 0x1b, 0xf8, 0x21, 0xd3, 0x2f, 0x9f, 0xd7, 0xf4, 0x42,
0x03, 0x1c, 0xa6, 0x38, 0x42, 0xb3, 0xe3, 0x13, 0xf0, 0x66, 0xd7, 0x5b, 0x5b, 0xcb, 0xbd, 0x5d,
0x32, 0xe9, 0x45, 0x98, 0x63, 0x23, 0xcd, 0xce, 0x4e, 0x47, 0x02, 0x5e, 0xb3, 0xaa, 0xfc, 0x73,
0x24, 0x32, 0x2e, 0x7c, 0x80, 0xe6, 0xbf, 0xc0, 0xe8, 0x92, 0xcb, 0xd4, 0x9b, 0x31, 0xcb, 0x79,
0x32, 0x51, 0x5b, 0xbf, 0x3c, 0xf2, 0xae, 0x8e, 0x1f, 0xb2, 0x33, 0xfe, 0xe6, 0x56, 0xe4, 0x68,
0xfc, 0x01, 0x2d, 0x8d, 0x78, 0xa5, 0xab, 0x21, 0xc4, 0x17, 0x79, 0x0a, 0xdc, 0xbb, 0x6d, 0x74,
0x4f, 0xa7, 0xe9, 0x3e, 0xf2, 0xea, 0xb4, 0x1a, 0x42, 0x7f, 0xcc, 0x58, 0xe7, 0xa2, 0x15, 0x99,
0x31, 0xfc, 0x19, 0xad, 0x38, 0x71, 0x72, 0x4e, 0x19, 0x83, 0xc2, 0x9b, 0x33, 0xea, 0xde, 0x3f,
0xaa, 0xf7, 0x6b, 0xca, 0xca, 0x97, 0xad, 0xcc, 0x8e, 0xe2, 0x23, 0xd4, 0x11, 0x05, 0x4d, 0xa0,
0x04, 0xa6, 0xbd, 0x79, 0x23, 0xde, 0x9e, 0x26, 0x3e, 0x76, 0x80, 0x75, 0x5e, 0x19, 0x70, 0x86,
0xee, 0x95, 0x7c, 0x98, 0x17, 0x10, 0x53, 0x21, 0xe2, 0x84, 0x6a, 0xc8, 0xb8, 0x1c, 0x79, 0x77,
0x8c, 0xf8, 0xc5, 0x34, 0xf1, 0x91, 0x41, 0x43, 0x21, 0xf6, 0x2d, 0x68, 0x27, 0xb8, 0x5b, 0x5e,
0x6f, 0xe0, 0x33, 0x84, 0xaf, 0x26, 0x2a, 0xf2, 0xc4, 0xdc, 0x6f, 0xaf, 0xf3, 0x9f, 0xf3, 0x38,
0xf0, 0xc6, 0x3c, 0xae, 0xb1, 0xb7, 0x80, 0x3a, 0xcd, 0x1d, 0xdc, 0xfb, 0xda, 0x46, 0x9b, 0x09,
0x2f, 0xc9, 0xd4, 0x5f, 0xc0, 0xde, 0xfd, 0x6b, 0x9f, 0xd7, 0xf1, 0xf8, 0x72, 0x1f, 0xb7, 0x3e,
0xbd, 0xb5, 0x68, 0xc6, 0x0b, 0xca, 0x32, 0xc2, 0x65, 0xe6, 0x67, 0xc0, 0xcc, 0xd5, 0x77, 0xdf,
0xbe, 0xc8, 0xd5, 0x5f, 0x7e, 0x4b, 0x3b, 0x4d, 0xf5, 0xad, 0x3d, 0x73, 0x10, 0x86, 0xdf, 0xdb,
0x1b, 0x07, 0xb5, 0x32, 0x4c, 0x15, 0xa9, 0xcb, 0x71, 0xd5, 0xef, 0x92, 0xc8, 0x25, 0x7f, 0xba,
0xcc, 0x20, 0x4c, 0xd5, 0xa0, 0xc9, 0x0c, 0xfa, 0xdd, 0x41, 0x93, 0xf9, 0xd5, 0xde, 0xac, 0x1b,
0x41, 0x10, 0xa6, 0x2a, 0x08, 0x9a, 0x54, 0x10, 0xf4, 0xbb, 0x41, 0xd0, 0xe4, 0x86, 0x73, 0x66,
0xb1, 0xcf, 0x7e, 0x07, 0x00, 0x00, 0xff, 0xff, 0x21, 0x55, 0x21, 0xc4, 0x42, 0x05, 0x00, 0x00,
}