blob: edf572654a44290316f07dad5294e141a1e56928 [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 {
// Output only. 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"`
// Output only. The name of the artifact.
Name *wrappers.StringValue `protobuf:"bytes,2,opt,name=name,proto3" json:"name,omitempty"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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"`
// Output only. 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{
// 653 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x95, 0x5f, 0x6f, 0xd3, 0x3a,
0x18, 0xc6, 0xd5, 0x76, 0x67, 0xeb, 0xdc, 0xad, 0x47, 0xf2, 0x6e, 0x72, 0xa6, 0xe9, 0xd0, 0x4d,
0x9a, 0x18, 0x37, 0x8e, 0x3a, 0x84, 0x84, 0x32, 0x06, 0xa4, 0xfc, 0x99, 0x34, 0x09, 0x54, 0x95,
0x51, 0x24, 0x54, 0x29, 0x72, 0x9b, 0x77, 0x99, 0xa5, 0x24, 0x0e, 0xb6, 0xd3, 0x69, 0x42, 0x48,
0x7c, 0x16, 0x2e, 0xf9, 0x28, 0x7c, 0x8a, 0x5d, 0xef, 0x9e, 0x1b, 0xae, 0x50, 0x12, 0xc7, 0x6d,
0x19, 0x83, 0xc0, 0x9d, 0x9d, 0xf7, 0xf9, 0x3d, 0xef, 0x53, 0xe7, 0x75, 0x8a, 0xee, 0x07, 0x9c,
0x07, 0x21, 0xd8, 0xd4, 0x97, 0x76, 0xb1, 0xcc, 0x56, 0xd3, 0xae, 0x2d, 0x40, 0xf2, 0x54, 0x4c,
0xa0, 0x7c, 0xec, 0x51, 0x5f, 0x7a, 0xa7, 0x0c, 0x42, 0x9f, 0x24, 0x82, 0x2b, 0x8e, 0xb7, 0x8b,
0xe7, 0x84, 0xfa, 0x92, 0x18, 0x92, 0x4c, 0xbb, 0xc4, 0x90, 0x9b, 0x87, 0x37, 0x99, 0x43, 0x9c,
0x46, 0xd7, 0x8d, 0xbd, 0x09, 0x55, 0x10, 0x70, 0x71, 0x51, 0x74, 0xd8, 0x7c, 0xf8, 0x87, 0xb8,
0x4f, 0x15, 0xf5, 0xd4, 0x45, 0x02, 0x9a, 0xbf, 0x55, 0xf2, 0x09, 0xb3, 0x0b, 0xc5, 0x18, 0xce,
0xe8, 0x94, 0x71, 0xa1, 0x05, 0xff, 0xcd, 0x09, 0xca, 0xd4, 0xba, 0xf4, 0xbf, 0x2e, 0xe5, 0xbb,
0x71, 0x7a, 0x6a, 0x9f, 0x0b, 0x9a, 0x24, 0x20, 0xa4, 0xae, 0x6f, 0xcd, 0xa1, 0x34, 0x8e, 0xb9,
0xa2, 0x8a, 0xf1, 0x58, 0x57, 0x77, 0xbe, 0x36, 0x51, 0xfb, 0x28, 0x17, 0xb8, 0xbe, 0x7c, 0x9e,
0xb5, 0xc6, 0x27, 0x68, 0xbd, 0x6c, 0xe1, 0xc5, 0x34, 0x02, 0xab, 0xd6, 0xa9, 0xed, 0xad, 0xf6,
0xec, 0x4b, 0xb7, 0xf1, 0xcd, 0xbd, 0x83, 0x6e, 0xcf, 0x8e, 0x50, 0xaf, 0x12, 0x26, 0xc9, 0x84,
0x47, 0xf6, 0xa2, 0xcf, 0x60, 0xad, 0x74, 0x79, 0x49, 0x23, 0xc0, 0xf7, 0xd0, 0x52, 0x6e, 0x56,
0xef, 0xd4, 0xf6, 0x5a, 0xfb, 0x5b, 0x9a, 0x25, 0x65, 0x6a, 0xf2, 0x4a, 0x09, 0x16, 0x07, 0x43,
0x1a, 0xa6, 0xd0, 0x6b, 0x5c, 0xba, 0x8d, 0x41, 0x2e, 0xc7, 0xef, 0x50, 0xb3, 0x3c, 0x6b, 0xab,
0xd1, 0xa9, 0xed, 0xb5, 0xf7, 0xfb, 0xe4, 0xa6, 0xd7, 0x99, 0x1f, 0x36, 0x59, 0x4c, 0xf1, 0x44,
0xc3, 0xcf, 0xe2, 0x34, 0xba, 0xa1, 0x54, 0xb4, 0x33, 0x6d, 0xf0, 0x23, 0x84, 0x24, 0x84, 0x30,
0x51, 0x74, 0x1c, 0x82, 0xb5, 0x94, 0xe7, 0xdd, 0xbc, 0x96, 0xb7, 0xc7, 0x79, 0x38, 0x97, 0x76,
0x0e, 0xc9, 0x0c, 0x4e, 0x59, 0xa8, 0x40, 0xe4, 0x06, 0xff, 0x54, 0x34, 0x98, 0x21, 0xf8, 0x00,
0x35, 0x25, 0x17, 0x45, 0xff, 0xe5, 0x6a, 0xb8, 0x01, 0xf0, 0x31, 0xfa, 0x77, 0x96, 0xc5, 0x3b,
0x67, 0xea, 0xcc, 0x5a, 0xe9, 0x34, 0xaa, 0x9d, 0x79, 0x7b, 0x46, 0xbe, 0x61, 0xea, 0x0c, 0x0f,
0xd0, 0x06, 0x55, 0x4a, 0xb0, 0x71, 0xaa, 0xc0, 0x33, 0xb7, 0xc5, 0x6a, 0x56, 0xf5, 0xc3, 0x86,
0x1e, 0x94, 0x30, 0x3e, 0x40, 0x2b, 0x11, 0x28, 0xc1, 0x26, 0xd2, 0x5a, 0xad, 0xea, 0x53, 0x12,
0xf8, 0x10, 0x35, 0x25, 0x04, 0x11, 0xc4, 0x4a, 0x5a, 0xa8, 0x2a, 0x6d, 0x10, 0xdc, 0x43, 0xad,
0x6c, 0x48, 0xbc, 0x69, 0x56, 0x94, 0x56, 0xab, 0xaa, 0x03, 0xca, 0xa8, 0x7c, 0x2f, 0xb1, 0x40,
0xab, 0xe6, 0xfa, 0x5a, 0x6b, 0x7f, 0x31, 0x92, 0x4f, 0xa9, 0xa2, 0x27, 0x17, 0x09, 0xfc, 0x64,
0x24, 0xcb, 0x92, 0xce, 0xed, 0xeb, 0x2d, 0x7e, 0x80, 0x9a, 0x59, 0x3b, 0x2f, 0x15, 0xa1, 0xb5,
0x5e, 0xf5, 0x02, 0xad, 0x64, 0xc8, 0x6b, 0x11, 0xe2, 0xc7, 0xa8, 0xc5, 0xa4, 0x27, 0x20, 0x01,
0xaa, 0xc0, 0xb7, 0xda, 0x15, 0x07, 0x92, 0xc9, 0x81, 0x46, 0x9c, 0xfe, 0x95, 0xfb, 0xa2, 0xf2,
0xc5, 0xc7, 0x3b, 0xc1, 0xc2, 0x5e, 0xda, 0xef, 0x7f, 0xfc, 0x00, 0x7e, 0xe8, 0x7d, 0xac, 0xa3,
0xdd, 0x09, 0x8f, 0xc8, 0x6f, 0x3f, 0xcd, 0xbd, 0x8d, 0x45, 0xf7, 0x7e, 0x16, 0xb7, 0x5f, 0x7b,
0x7b, 0xac, 0xc9, 0x80, 0x87, 0x34, 0x0e, 0x08, 0x17, 0x81, 0x1d, 0x40, 0x9c, 0xff, 0x18, 0x7b,
0x16, 0xef, 0x17, 0xff, 0x16, 0x07, 0x66, 0xf5, 0xa9, 0xde, 0x38, 0x72, 0xdd, 0xcf, 0xf5, 0xed,
0xa2, 0x13, 0x71, 0xfd, 0xb9, 0x57, 0x46, 0x86, 0x5d, 0x62, 0x86, 0xf7, 0x4b, 0xa9, 0x19, 0xb9,
0xbe, 0x1c, 0x19, 0xcd, 0x68, 0xd8, 0x1d, 0x19, 0xcd, 0x55, 0x7d, 0xb7, 0x28, 0x38, 0x8e, 0xeb,
0x4b, 0xc7, 0x31, 0x2a, 0xc7, 0x19, 0x76, 0x1d, 0xc7, 0xe8, 0xc6, 0xcb, 0x79, 0xd8, 0xbb, 0xdf,
0x03, 0x00, 0x00, 0xff, 0xff, 0x8e, 0xe5, 0xe5, 0xd3, 0xd9, 0x06, 0x00, 0x00,
}