blob: 1ebc0eaf755633c29672025a378d05764d8e21f7 [file] [log] [blame]
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v1/resources/google_ads_field.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/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 field or resource (artifact) used by GoogleAdsService.
type GoogleAdsField struct {
// The resource name of the artifact.
// Artifact resource names have the form:
//
// `googleAdsFields/{name}`
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
// The name of the artifact.
Name *wrappers.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// The category of the artifact.
Category enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory `protobuf:"varint,3,opt,name=category,proto3,enum=google.ads.googleads.v1.enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory" json:"category,omitempty"`
// Whether the artifact can be used in a SELECT clause in search
// queries.
Selectable *wrappers.BoolValue `protobuf:"bytes,4,opt,name=selectable,proto3" json:"selectable,omitempty"`
// Whether the artifact can be used in a WHERE clause in search
// queries.
Filterable *wrappers.BoolValue `protobuf:"bytes,5,opt,name=filterable,proto3" json:"filterable,omitempty"`
// Whether the artifact can be used in a ORDER BY clause in search
// queries.
Sortable *wrappers.BoolValue `protobuf:"bytes,6,opt,name=sortable,proto3" json:"sortable,omitempty"`
// The names of all resources, segments, and metrics that are selectable with
// the described artifact.
SelectableWith []*wrappers.StringValue `protobuf:"bytes,7,rep,name=selectable_with,json=selectableWith,proto3" json:"selectable_with,omitempty"`
// The names of all resources that are selectable with the described
// artifact. Fields from these resources do not segment metrics when included
// in search queries.
//
// This field is only set for artifacts whose category is RESOURCE.
AttributeResources []*wrappers.StringValue `protobuf:"bytes,8,rep,name=attribute_resources,json=attributeResources,proto3" json:"attribute_resources,omitempty"`
// At and beyond version V1 this field lists the names of all metrics that are
// selectable with the described artifact when it is used in the FROM clause.
// It is only set for artifacts whose category is RESOURCE.
//
// Before version V1 this field lists the names of all metrics that are
// selectable with the described artifact. It is only set for artifacts whose
// category is either RESOURCE or SEGMENT
Metrics []*wrappers.StringValue `protobuf:"bytes,9,rep,name=metrics,proto3" json:"metrics,omitempty"`
// At and beyond version V1 this field lists the names of all artifacts,
// whether a segment or another resource, that segment metrics when included
// in search queries and when the described artifact is used in the FROM
// clause. It is only set for artifacts whose category is RESOURCE.
//
// Before version V1 this field lists the names of all artifacts, whether a
// segment or another resource, that segment metrics when included in search
// queries. It is only set for artifacts of category RESOURCE, SEGMENT or
// METRIC.
Segments []*wrappers.StringValue `protobuf:"bytes,10,rep,name=segments,proto3" json:"segments,omitempty"`
// Values the artifact can assume if it is a field of type ENUM.
//
// This field is only set for artifacts of category SEGMENT or ATTRIBUTE.
EnumValues []*wrappers.StringValue `protobuf:"bytes,11,rep,name=enum_values,json=enumValues,proto3" json:"enum_values,omitempty"`
// This field determines the operators that can be used with the artifact
// in WHERE clauses.
DataType enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType `protobuf:"varint,12,opt,name=data_type,json=dataType,proto3,enum=google.ads.googleads.v1.enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType" json:"data_type,omitempty"`
// The URL of proto describing the artifact's data type.
TypeUrl *wrappers.StringValue `protobuf:"bytes,13,opt,name=type_url,json=typeUrl,proto3" json:"type_url,omitempty"`
// Whether the field artifact is repeated.
IsRepeated *wrappers.BoolValue `protobuf:"bytes,14,opt,name=is_repeated,json=isRepeated,proto3" json:"is_repeated,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *GoogleAdsField) Reset() { *m = GoogleAdsField{} }
func (m *GoogleAdsField) String() string { return proto.CompactTextString(m) }
func (*GoogleAdsField) ProtoMessage() {}
func (*GoogleAdsField) Descriptor() ([]byte, []int) {
return fileDescriptor_0c6569d4aa3b558c, []int{0}
}
func (m *GoogleAdsField) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_GoogleAdsField.Unmarshal(m, b)
}
func (m *GoogleAdsField) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_GoogleAdsField.Marshal(b, m, deterministic)
}
func (m *GoogleAdsField) XXX_Merge(src proto.Message) {
xxx_messageInfo_GoogleAdsField.Merge(m, src)
}
func (m *GoogleAdsField) XXX_Size() int {
return xxx_messageInfo_GoogleAdsField.Size(m)
}
func (m *GoogleAdsField) XXX_DiscardUnknown() {
xxx_messageInfo_GoogleAdsField.DiscardUnknown(m)
}
var xxx_messageInfo_GoogleAdsField proto.InternalMessageInfo
func (m *GoogleAdsField) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
func (m *GoogleAdsField) GetName() *wrappers.StringValue {
if m != nil {
return m.Name
}
return nil
}
func (m *GoogleAdsField) GetCategory() enums.GoogleAdsFieldCategoryEnum_GoogleAdsFieldCategory {
if m != nil {
return m.Category
}
return enums.GoogleAdsFieldCategoryEnum_UNSPECIFIED
}
func (m *GoogleAdsField) GetSelectable() *wrappers.BoolValue {
if m != nil {
return m.Selectable
}
return nil
}
func (m *GoogleAdsField) GetFilterable() *wrappers.BoolValue {
if m != nil {
return m.Filterable
}
return nil
}
func (m *GoogleAdsField) GetSortable() *wrappers.BoolValue {
if m != nil {
return m.Sortable
}
return nil
}
func (m *GoogleAdsField) GetSelectableWith() []*wrappers.StringValue {
if m != nil {
return m.SelectableWith
}
return nil
}
func (m *GoogleAdsField) GetAttributeResources() []*wrappers.StringValue {
if m != nil {
return m.AttributeResources
}
return nil
}
func (m *GoogleAdsField) GetMetrics() []*wrappers.StringValue {
if m != nil {
return m.Metrics
}
return nil
}
func (m *GoogleAdsField) GetSegments() []*wrappers.StringValue {
if m != nil {
return m.Segments
}
return nil
}
func (m *GoogleAdsField) GetEnumValues() []*wrappers.StringValue {
if m != nil {
return m.EnumValues
}
return nil
}
func (m *GoogleAdsField) GetDataType() enums.GoogleAdsFieldDataTypeEnum_GoogleAdsFieldDataType {
if m != nil {
return m.DataType
}
return enums.GoogleAdsFieldDataTypeEnum_UNSPECIFIED
}
func (m *GoogleAdsField) GetTypeUrl() *wrappers.StringValue {
if m != nil {
return m.TypeUrl
}
return nil
}
func (m *GoogleAdsField) GetIsRepeated() *wrappers.BoolValue {
if m != nil {
return m.IsRepeated
}
return nil
}
func init() {
proto.RegisterType((*GoogleAdsField)(nil), "google.ads.googleads.v1.resources.GoogleAdsField")
}
func init() {
proto.RegisterFile("google/ads/googleads/v1/resources/google_ads_field.proto", fileDescriptor_0c6569d4aa3b558c)
}
var fileDescriptor_0c6569d4aa3b558c = []byte{
// 581 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xdd, 0x6a, 0x13, 0x41,
0x14, 0xc7, 0x49, 0x52, 0x9b, 0xcd, 0xa4, 0x8d, 0x30, 0xbd, 0x59, 0x42, 0x91, 0x54, 0x29, 0xe4,
0x6a, 0xd6, 0x54, 0xa8, 0x65, 0x4b, 0x85, 0x8d, 0xd6, 0x82, 0xa0, 0x84, 0x55, 0x23, 0x48, 0x60,
0x99, 0x64, 0x4f, 0xb6, 0x03, 0xbb, 0x3b, 0xcb, 0xcc, 0x6c, 0x4a, 0xee, 0x7c, 0x16, 0x2f, 0xbd,
0xf3, 0x35, 0x7c, 0x14, 0x9f, 0x42, 0xf6, 0x6b, 0xd2, 0x52, 0x63, 0x62, 0xef, 0x4e, 0xce, 0xf9,
0xff, 0xce, 0x57, 0xce, 0x0e, 0x3a, 0x0b, 0x38, 0x0f, 0x42, 0xb0, 0xa8, 0x2f, 0xad, 0xc2, 0xcc,
0xac, 0xc5, 0xc0, 0x12, 0x20, 0x79, 0x2a, 0x66, 0x50, 0xb9, 0x3d, 0xea, 0x4b, 0x6f, 0xce, 0x20,
0xf4, 0x49, 0x22, 0xb8, 0xe2, 0xf8, 0xa8, 0xf0, 0x13, 0xea, 0x4b, 0xa2, 0x49, 0xb2, 0x18, 0x10,
0x4d, 0x76, 0x2f, 0xd6, 0x25, 0x87, 0x38, 0x8d, 0xee, 0x27, 0xf6, 0x66, 0x54, 0x41, 0xc0, 0xc5,
0xb2, 0xa8, 0xd0, 0x7d, 0xf5, 0x9f, 0xb8, 0x4f, 0x15, 0xf5, 0xd4, 0x32, 0x81, 0x92, 0x7f, 0x52,
0xf2, 0xf9, 0xaf, 0x69, 0x3a, 0xb7, 0x6e, 0x04, 0x4d, 0x12, 0x10, 0xb2, 0x8c, 0x1f, 0x56, 0xf9,
0x13, 0x66, 0xd1, 0x38, 0xe6, 0x8a, 0x2a, 0xc6, 0xe3, 0x32, 0xfa, 0xf4, 0x67, 0x13, 0x75, 0xae,
0x72, 0x81, 0xe3, 0xcb, 0xb7, 0x59, 0x01, 0xfc, 0x0c, 0xed, 0x57, 0xc3, 0x79, 0x31, 0x8d, 0xc0,
0xac, 0xf5, 0x6a, 0xfd, 0x96, 0xbb, 0x57, 0x39, 0x3f, 0xd0, 0x08, 0xf0, 0x73, 0xb4, 0x93, 0xc7,
0xea, 0xbd, 0x5a, 0xbf, 0x7d, 0x72, 0x58, 0xee, 0x86, 0x54, 0x4d, 0x90, 0x8f, 0x4a, 0xb0, 0x38,
0x18, 0xd3, 0x30, 0x05, 0x37, 0x57, 0xe2, 0x10, 0x19, 0xd5, 0xe4, 0x66, 0xa3, 0x57, 0xeb, 0x77,
0x4e, 0x46, 0x64, 0xdd, 0x72, 0xf3, 0xd1, 0xc9, 0xdd, 0xbe, 0x5e, 0x97, 0xf0, 0x65, 0x9c, 0x46,
0x6b, 0x42, 0xae, 0xae, 0x80, 0x6d, 0x84, 0x24, 0x84, 0x30, 0x53, 0x74, 0x1a, 0x82, 0xb9, 0x93,
0x77, 0xd9, 0xbd, 0xd7, 0xe5, 0x90, 0xf3, 0xb0, 0xe8, 0xf1, 0x96, 0x3a, 0x63, 0xe7, 0x2c, 0x54,
0x20, 0x72, 0xf6, 0xd1, 0x66, 0x76, 0xa5, 0xc6, 0xa7, 0xc8, 0x90, 0x5c, 0x14, 0x55, 0x77, 0x37,
0x92, 0x5a, 0x8b, 0x2f, 0xd1, 0xe3, 0x55, 0x07, 0xde, 0x0d, 0x53, 0xd7, 0x66, 0xb3, 0xd7, 0xd8,
0xb8, 0xda, 0xce, 0x0a, 0xfa, 0xc2, 0xd4, 0x35, 0x7e, 0x8f, 0x0e, 0xa8, 0x52, 0x82, 0x4d, 0x53,
0x05, 0x9e, 0x3e, 0x51, 0xd3, 0xd8, 0x22, 0x15, 0xd6, 0xa0, 0x5b, 0x71, 0xf8, 0x14, 0x35, 0x23,
0x50, 0x82, 0xcd, 0xa4, 0xd9, 0xda, 0x22, 0x45, 0x25, 0xc6, 0x67, 0xc8, 0x90, 0x10, 0x44, 0x10,
0x2b, 0x69, 0xa2, 0x2d, 0x40, 0xad, 0xc6, 0x17, 0xa8, 0x9d, 0xfd, 0xf9, 0xde, 0x22, 0xf3, 0x4b,
0xb3, 0xbd, 0x05, 0x8c, 0x32, 0x20, 0x37, 0x25, 0x8e, 0x50, 0x4b, 0x7f, 0x1f, 0xe6, 0xde, 0x03,
0xae, 0xec, 0x0d, 0x55, 0xf4, 0xd3, 0x32, 0x81, 0xbf, 0x5c, 0x59, 0x15, 0x72, 0x0d, 0xbf, 0xb4,
0xf0, 0x4b, 0x64, 0x64, 0x95, 0xbc, 0x54, 0x84, 0xe6, 0xfe, 0x16, 0x5f, 0x42, 0x33, 0x53, 0x7f,
0x16, 0x21, 0x3e, 0x47, 0x6d, 0x26, 0x3d, 0x01, 0x09, 0x50, 0x05, 0xbe, 0xd9, 0xd9, 0x7c, 0x63,
0x4c, 0xba, 0xa5, 0x7a, 0xf8, 0xad, 0x8e, 0x8e, 0x67, 0x3c, 0x22, 0x1b, 0x9f, 0xa6, 0xe1, 0xc1,
0xdd, 0x09, 0x46, 0x59, 0xde, 0x51, 0xed, 0xeb, 0xbb, 0x92, 0x0c, 0x78, 0x48, 0xe3, 0x80, 0x70,
0x11, 0x58, 0x01, 0xc4, 0x79, 0xd5, 0xea, 0x09, 0x4a, 0x98, 0xfc, 0xc7, 0x6b, 0x79, 0xae, 0xad,
0xef, 0xf5, 0xc6, 0x95, 0xe3, 0xfc, 0xa8, 0x1f, 0x15, 0x95, 0x88, 0xe3, 0xdf, 0xda, 0x28, 0x19,
0x0f, 0x88, 0x3e, 0xa6, 0x5f, 0x95, 0x66, 0xe2, 0xf8, 0x72, 0xa2, 0x35, 0x93, 0xf1, 0x60, 0xa2,
0x35, 0xbf, 0xeb, 0xc7, 0x45, 0xc0, 0xb6, 0x1d, 0x5f, 0xda, 0xb6, 0x56, 0xd9, 0xf6, 0x78, 0x60,
0xdb, 0x5a, 0x37, 0xdd, 0xcd, 0x9b, 0x7d, 0xf1, 0x27, 0x00, 0x00, 0xff, 0xff, 0xf4, 0xab, 0x95,
0x0d, 0xd9, 0x05, 0x00, 0x00,
}