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 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281
|
// Code generated by protoc-gen-go. DO NOT EDIT.
// source: google/ads/googleads/v3/resources/campaign.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 campaign.
type Campaign struct {
// Immutable. The resource name of the campaign.
// Campaign resource names have the form:
//
// `customers/{customer_id}/campaigns/{campaign_id}`
ResourceName string `protobuf:"bytes,1,opt,name=resource_name,json=resourceName,proto3" json:"resource_name,omitempty"`
// Output only. The ID of the campaign.
Id *wrappers.Int64Value `protobuf:"bytes,3,opt,name=id,proto3" json:"id,omitempty"`
// The name of the campaign.
//
// This field is required and should not be empty when creating new
// campaigns.
//
// 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 status of the campaign.
//
// When a new campaign is added, the status defaults to ENABLED.
Status enums.CampaignStatusEnum_CampaignStatus `protobuf:"varint,5,opt,name=status,proto3,enum=google.ads.googleads.v3.enums.CampaignStatusEnum_CampaignStatus" json:"status,omitempty"`
// Output only. The ad serving status of the campaign.
ServingStatus enums.CampaignServingStatusEnum_CampaignServingStatus `protobuf:"varint,21,opt,name=serving_status,json=servingStatus,proto3,enum=google.ads.googleads.v3.enums.CampaignServingStatusEnum_CampaignServingStatus" json:"serving_status,omitempty"`
// The ad serving optimization status of the campaign.
AdServingOptimizationStatus enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus `protobuf:"varint,8,opt,name=ad_serving_optimization_status,json=adServingOptimizationStatus,proto3,enum=google.ads.googleads.v3.enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus" json:"ad_serving_optimization_status,omitempty"`
// Immutable. The primary serving target for ads within the campaign.
// The targeting options can be refined in `network_settings`.
//
// This field is required and should not be empty when creating new
// campaigns.
//
// Can be set only when creating campaigns.
// After the campaign is created, the field can not be changed.
AdvertisingChannelType enums.AdvertisingChannelTypeEnum_AdvertisingChannelType `protobuf:"varint,9,opt,name=advertising_channel_type,json=advertisingChannelType,proto3,enum=google.ads.googleads.v3.enums.AdvertisingChannelTypeEnum_AdvertisingChannelType" json:"advertising_channel_type,omitempty"`
// Immutable. Optional refinement to `advertising_channel_type`.
// Must be a valid sub-type of the parent channel type.
//
// Can be set only when creating campaigns.
// After campaign is created, the field can not be changed.
AdvertisingChannelSubType enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType `protobuf:"varint,10,opt,name=advertising_channel_sub_type,json=advertisingChannelSubType,proto3,enum=google.ads.googleads.v3.enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType" json:"advertising_channel_sub_type,omitempty"`
// The URL template for constructing a tracking URL.
TrackingUrlTemplate *wrappers.StringValue `protobuf:"bytes,11,opt,name=tracking_url_template,json=trackingUrlTemplate,proto3" json:"tracking_url_template,omitempty"`
// The list of mappings used to substitute custom parameter tags in a
// `tracking_url_template`, `final_urls`, or `mobile_final_urls`.
UrlCustomParameters []*common.CustomParameter `protobuf:"bytes,12,rep,name=url_custom_parameters,json=urlCustomParameters,proto3" json:"url_custom_parameters,omitempty"`
// Settings for Real-Time Bidding, a feature only available for campaigns
// targeting the Ad Exchange network.
RealTimeBiddingSetting *common.RealTimeBiddingSetting `protobuf:"bytes,39,opt,name=real_time_bidding_setting,json=realTimeBiddingSetting,proto3" json:"real_time_bidding_setting,omitempty"`
// The network settings for the campaign.
NetworkSettings *Campaign_NetworkSettings `protobuf:"bytes,14,opt,name=network_settings,json=networkSettings,proto3" json:"network_settings,omitempty"`
// Immutable. The hotel setting for the campaign.
HotelSetting *Campaign_HotelSettingInfo `protobuf:"bytes,32,opt,name=hotel_setting,json=hotelSetting,proto3" json:"hotel_setting,omitempty"`
// The setting for controlling Dynamic Search Ads (DSA).
DynamicSearchAdsSetting *Campaign_DynamicSearchAdsSetting `protobuf:"bytes,33,opt,name=dynamic_search_ads_setting,json=dynamicSearchAdsSetting,proto3" json:"dynamic_search_ads_setting,omitempty"`
// The setting for controlling Shopping campaigns.
ShoppingSetting *Campaign_ShoppingSetting `protobuf:"bytes,36,opt,name=shopping_setting,json=shoppingSetting,proto3" json:"shopping_setting,omitempty"`
// Setting for targeting related features.
TargetingSetting *common.TargetingSetting `protobuf:"bytes,43,opt,name=targeting_setting,json=targetingSetting,proto3" json:"targeting_setting,omitempty"`
// The setting for ads geotargeting.
GeoTargetTypeSetting *Campaign_GeoTargetTypeSetting `protobuf:"bytes,47,opt,name=geo_target_type_setting,json=geoTargetTypeSetting,proto3" json:"geo_target_type_setting,omitempty"`
// The setting related to App Campaign.
AppCampaignSetting *Campaign_AppCampaignSetting `protobuf:"bytes,51,opt,name=app_campaign_setting,json=appCampaignSetting,proto3" json:"app_campaign_setting,omitempty"`
// Output only. The resource names of labels attached to this campaign.
Labels []*wrappers.StringValue `protobuf:"bytes,53,rep,name=labels,proto3" json:"labels,omitempty"`
// Output only. The type of campaign: normal, draft, or experiment.
ExperimentType enums.CampaignExperimentTypeEnum_CampaignExperimentType `protobuf:"varint,17,opt,name=experiment_type,json=experimentType,proto3,enum=google.ads.googleads.v3.enums.CampaignExperimentTypeEnum_CampaignExperimentType" json:"experiment_type,omitempty"`
// Output only. The resource name of the base campaign of a draft or experiment campaign.
// For base campaigns, this is equal to `resource_name`.
//
// This field is read-only.
BaseCampaign *wrappers.StringValue `protobuf:"bytes,28,opt,name=base_campaign,json=baseCampaign,proto3" json:"base_campaign,omitempty"`
// The budget of the campaign.
CampaignBudget *wrappers.StringValue `protobuf:"bytes,6,opt,name=campaign_budget,json=campaignBudget,proto3" json:"campaign_budget,omitempty"`
// Output only. The type of bidding strategy.
//
// A bidding strategy can be created by setting either the bidding scheme to
// create a standard bidding strategy or the `bidding_strategy` field to
// create a portfolio bidding strategy.
//
// This field is read-only.
BiddingStrategyType enums.BiddingStrategyTypeEnum_BiddingStrategyType `protobuf:"varint,22,opt,name=bidding_strategy_type,json=biddingStrategyType,proto3,enum=google.ads.googleads.v3.enums.BiddingStrategyTypeEnum_BiddingStrategyType" json:"bidding_strategy_type,omitempty"`
// The date when campaign started.
//
// This field must not be used in WHERE clauses.
StartDate *wrappers.StringValue `protobuf:"bytes,19,opt,name=start_date,json=startDate,proto3" json:"start_date,omitempty"`
// The date when campaign ended.
//
// This field must not be used in WHERE clauses.
EndDate *wrappers.StringValue `protobuf:"bytes,20,opt,name=end_date,json=endDate,proto3" json:"end_date,omitempty"`
// Suffix used to append query parameters to landing pages that are served
// with parallel tracking.
FinalUrlSuffix *wrappers.StringValue `protobuf:"bytes,38,opt,name=final_url_suffix,json=finalUrlSuffix,proto3" json:"final_url_suffix,omitempty"`
// A list that limits how often each user will see this campaign's ads.
FrequencyCaps []*common.FrequencyCapEntry `protobuf:"bytes,40,rep,name=frequency_caps,json=frequencyCaps,proto3" json:"frequency_caps,omitempty"`
// Output only. 3-Tier Brand Safety setting for the campaign.
VideoBrandSafetySuitability enums.BrandSafetySuitabilityEnum_BrandSafetySuitability `protobuf:"varint,42,opt,name=video_brand_safety_suitability,json=videoBrandSafetySuitability,proto3,enum=google.ads.googleads.v3.enums.BrandSafetySuitabilityEnum_BrandSafetySuitability" json:"video_brand_safety_suitability,omitempty"`
// Describes how unbranded pharma ads will be displayed.
VanityPharma *Campaign_VanityPharma `protobuf:"bytes,44,opt,name=vanity_pharma,json=vanityPharma,proto3" json:"vanity_pharma,omitempty"`
// Selective optimization setting for this campaign, which includes a set of
// conversion actions to optimize this campaign towards.
SelectiveOptimization *Campaign_SelectiveOptimization `protobuf:"bytes,45,opt,name=selective_optimization,json=selectiveOptimization,proto3" json:"selective_optimization,omitempty"`
// Output only. Campaign-level settings for tracking information.
TrackingSetting *Campaign_TrackingSetting `protobuf:"bytes,46,opt,name=tracking_setting,json=trackingSetting,proto3" json:"tracking_setting,omitempty"`
// Payment mode for the campaign.
PaymentMode enums.PaymentModeEnum_PaymentMode `protobuf:"varint,52,opt,name=payment_mode,json=paymentMode,proto3,enum=google.ads.googleads.v3.enums.PaymentModeEnum_PaymentMode" json:"payment_mode,omitempty"`
// The bidding strategy for the campaign.
//
// Must be either portfolio (created via BiddingStrategy service) or
// standard, that is embedded into the campaign.
//
// Types that are valid to be assigned to CampaignBiddingStrategy:
// *Campaign_BiddingStrategy
// *Campaign_Commission
// *Campaign_ManualCpc
// *Campaign_ManualCpm
// *Campaign_ManualCpv
// *Campaign_MaximizeConversions
// *Campaign_MaximizeConversionValue
// *Campaign_TargetCpa
// *Campaign_TargetImpressionShare
// *Campaign_TargetRoas
// *Campaign_TargetSpend
// *Campaign_PercentCpc
// *Campaign_TargetCpm
CampaignBiddingStrategy isCampaign_CampaignBiddingStrategy `protobuf_oneof:"campaign_bidding_strategy"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign) Reset() { *m = Campaign{} }
func (m *Campaign) String() string { return proto.CompactTextString(m) }
func (*Campaign) ProtoMessage() {}
func (*Campaign) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0}
}
func (m *Campaign) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign.Unmarshal(m, b)
}
func (m *Campaign) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign.Marshal(b, m, deterministic)
}
func (m *Campaign) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign.Merge(m, src)
}
func (m *Campaign) XXX_Size() int {
return xxx_messageInfo_Campaign.Size(m)
}
func (m *Campaign) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign proto.InternalMessageInfo
func (m *Campaign) GetResourceName() string {
if m != nil {
return m.ResourceName
}
return ""
}
func (m *Campaign) GetId() *wrappers.Int64Value {
if m != nil {
return m.Id
}
return nil
}
func (m *Campaign) GetName() *wrappers.StringValue {
if m != nil {
return m.Name
}
return nil
}
func (m *Campaign) GetStatus() enums.CampaignStatusEnum_CampaignStatus {
if m != nil {
return m.Status
}
return enums.CampaignStatusEnum_UNSPECIFIED
}
func (m *Campaign) GetServingStatus() enums.CampaignServingStatusEnum_CampaignServingStatus {
if m != nil {
return m.ServingStatus
}
return enums.CampaignServingStatusEnum_UNSPECIFIED
}
func (m *Campaign) GetAdServingOptimizationStatus() enums.AdServingOptimizationStatusEnum_AdServingOptimizationStatus {
if m != nil {
return m.AdServingOptimizationStatus
}
return enums.AdServingOptimizationStatusEnum_UNSPECIFIED
}
func (m *Campaign) GetAdvertisingChannelType() enums.AdvertisingChannelTypeEnum_AdvertisingChannelType {
if m != nil {
return m.AdvertisingChannelType
}
return enums.AdvertisingChannelTypeEnum_UNSPECIFIED
}
func (m *Campaign) GetAdvertisingChannelSubType() enums.AdvertisingChannelSubTypeEnum_AdvertisingChannelSubType {
if m != nil {
return m.AdvertisingChannelSubType
}
return enums.AdvertisingChannelSubTypeEnum_UNSPECIFIED
}
func (m *Campaign) GetTrackingUrlTemplate() *wrappers.StringValue {
if m != nil {
return m.TrackingUrlTemplate
}
return nil
}
func (m *Campaign) GetUrlCustomParameters() []*common.CustomParameter {
if m != nil {
return m.UrlCustomParameters
}
return nil
}
func (m *Campaign) GetRealTimeBiddingSetting() *common.RealTimeBiddingSetting {
if m != nil {
return m.RealTimeBiddingSetting
}
return nil
}
func (m *Campaign) GetNetworkSettings() *Campaign_NetworkSettings {
if m != nil {
return m.NetworkSettings
}
return nil
}
func (m *Campaign) GetHotelSetting() *Campaign_HotelSettingInfo {
if m != nil {
return m.HotelSetting
}
return nil
}
func (m *Campaign) GetDynamicSearchAdsSetting() *Campaign_DynamicSearchAdsSetting {
if m != nil {
return m.DynamicSearchAdsSetting
}
return nil
}
func (m *Campaign) GetShoppingSetting() *Campaign_ShoppingSetting {
if m != nil {
return m.ShoppingSetting
}
return nil
}
func (m *Campaign) GetTargetingSetting() *common.TargetingSetting {
if m != nil {
return m.TargetingSetting
}
return nil
}
func (m *Campaign) GetGeoTargetTypeSetting() *Campaign_GeoTargetTypeSetting {
if m != nil {
return m.GeoTargetTypeSetting
}
return nil
}
func (m *Campaign) GetAppCampaignSetting() *Campaign_AppCampaignSetting {
if m != nil {
return m.AppCampaignSetting
}
return nil
}
func (m *Campaign) GetLabels() []*wrappers.StringValue {
if m != nil {
return m.Labels
}
return nil
}
func (m *Campaign) GetExperimentType() enums.CampaignExperimentTypeEnum_CampaignExperimentType {
if m != nil {
return m.ExperimentType
}
return enums.CampaignExperimentTypeEnum_UNSPECIFIED
}
func (m *Campaign) GetBaseCampaign() *wrappers.StringValue {
if m != nil {
return m.BaseCampaign
}
return nil
}
func (m *Campaign) GetCampaignBudget() *wrappers.StringValue {
if m != nil {
return m.CampaignBudget
}
return nil
}
func (m *Campaign) GetBiddingStrategyType() enums.BiddingStrategyTypeEnum_BiddingStrategyType {
if m != nil {
return m.BiddingStrategyType
}
return enums.BiddingStrategyTypeEnum_UNSPECIFIED
}
func (m *Campaign) GetStartDate() *wrappers.StringValue {
if m != nil {
return m.StartDate
}
return nil
}
func (m *Campaign) GetEndDate() *wrappers.StringValue {
if m != nil {
return m.EndDate
}
return nil
}
func (m *Campaign) GetFinalUrlSuffix() *wrappers.StringValue {
if m != nil {
return m.FinalUrlSuffix
}
return nil
}
func (m *Campaign) GetFrequencyCaps() []*common.FrequencyCapEntry {
if m != nil {
return m.FrequencyCaps
}
return nil
}
func (m *Campaign) GetVideoBrandSafetySuitability() enums.BrandSafetySuitabilityEnum_BrandSafetySuitability {
if m != nil {
return m.VideoBrandSafetySuitability
}
return enums.BrandSafetySuitabilityEnum_UNSPECIFIED
}
func (m *Campaign) GetVanityPharma() *Campaign_VanityPharma {
if m != nil {
return m.VanityPharma
}
return nil
}
func (m *Campaign) GetSelectiveOptimization() *Campaign_SelectiveOptimization {
if m != nil {
return m.SelectiveOptimization
}
return nil
}
func (m *Campaign) GetTrackingSetting() *Campaign_TrackingSetting {
if m != nil {
return m.TrackingSetting
}
return nil
}
func (m *Campaign) GetPaymentMode() enums.PaymentModeEnum_PaymentMode {
if m != nil {
return m.PaymentMode
}
return enums.PaymentModeEnum_UNSPECIFIED
}
type isCampaign_CampaignBiddingStrategy interface {
isCampaign_CampaignBiddingStrategy()
}
type Campaign_BiddingStrategy struct {
BiddingStrategy *wrappers.StringValue `protobuf:"bytes,23,opt,name=bidding_strategy,json=biddingStrategy,proto3,oneof"`
}
type Campaign_Commission struct {
Commission *common.Commission `protobuf:"bytes,49,opt,name=commission,proto3,oneof"`
}
type Campaign_ManualCpc struct {
ManualCpc *common.ManualCpc `protobuf:"bytes,24,opt,name=manual_cpc,json=manualCpc,proto3,oneof"`
}
type Campaign_ManualCpm struct {
ManualCpm *common.ManualCpm `protobuf:"bytes,25,opt,name=manual_cpm,json=manualCpm,proto3,oneof"`
}
type Campaign_ManualCpv struct {
ManualCpv *common.ManualCpv `protobuf:"bytes,37,opt,name=manual_cpv,json=manualCpv,proto3,oneof"`
}
type Campaign_MaximizeConversions struct {
MaximizeConversions *common.MaximizeConversions `protobuf:"bytes,30,opt,name=maximize_conversions,json=maximizeConversions,proto3,oneof"`
}
type Campaign_MaximizeConversionValue struct {
MaximizeConversionValue *common.MaximizeConversionValue `protobuf:"bytes,31,opt,name=maximize_conversion_value,json=maximizeConversionValue,proto3,oneof"`
}
type Campaign_TargetCpa struct {
TargetCpa *common.TargetCpa `protobuf:"bytes,26,opt,name=target_cpa,json=targetCpa,proto3,oneof"`
}
type Campaign_TargetImpressionShare struct {
TargetImpressionShare *common.TargetImpressionShare `protobuf:"bytes,48,opt,name=target_impression_share,json=targetImpressionShare,proto3,oneof"`
}
type Campaign_TargetRoas struct {
TargetRoas *common.TargetRoas `protobuf:"bytes,29,opt,name=target_roas,json=targetRoas,proto3,oneof"`
}
type Campaign_TargetSpend struct {
TargetSpend *common.TargetSpend `protobuf:"bytes,27,opt,name=target_spend,json=targetSpend,proto3,oneof"`
}
type Campaign_PercentCpc struct {
PercentCpc *common.PercentCpc `protobuf:"bytes,34,opt,name=percent_cpc,json=percentCpc,proto3,oneof"`
}
type Campaign_TargetCpm struct {
TargetCpm *common.TargetCpm `protobuf:"bytes,41,opt,name=target_cpm,json=targetCpm,proto3,oneof"`
}
func (*Campaign_BiddingStrategy) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_Commission) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_ManualCpc) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_ManualCpm) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_ManualCpv) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_MaximizeConversions) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_MaximizeConversionValue) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_TargetCpa) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_TargetImpressionShare) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_TargetRoas) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_TargetSpend) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_PercentCpc) isCampaign_CampaignBiddingStrategy() {}
func (*Campaign_TargetCpm) isCampaign_CampaignBiddingStrategy() {}
func (m *Campaign) GetCampaignBiddingStrategy() isCampaign_CampaignBiddingStrategy {
if m != nil {
return m.CampaignBiddingStrategy
}
return nil
}
func (m *Campaign) GetBiddingStrategy() *wrappers.StringValue {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_BiddingStrategy); ok {
return x.BiddingStrategy
}
return nil
}
func (m *Campaign) GetCommission() *common.Commission {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_Commission); ok {
return x.Commission
}
return nil
}
func (m *Campaign) GetManualCpc() *common.ManualCpc {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_ManualCpc); ok {
return x.ManualCpc
}
return nil
}
func (m *Campaign) GetManualCpm() *common.ManualCpm {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_ManualCpm); ok {
return x.ManualCpm
}
return nil
}
func (m *Campaign) GetManualCpv() *common.ManualCpv {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_ManualCpv); ok {
return x.ManualCpv
}
return nil
}
func (m *Campaign) GetMaximizeConversions() *common.MaximizeConversions {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_MaximizeConversions); ok {
return x.MaximizeConversions
}
return nil
}
func (m *Campaign) GetMaximizeConversionValue() *common.MaximizeConversionValue {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_MaximizeConversionValue); ok {
return x.MaximizeConversionValue
}
return nil
}
func (m *Campaign) GetTargetCpa() *common.TargetCpa {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_TargetCpa); ok {
return x.TargetCpa
}
return nil
}
func (m *Campaign) GetTargetImpressionShare() *common.TargetImpressionShare {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_TargetImpressionShare); ok {
return x.TargetImpressionShare
}
return nil
}
func (m *Campaign) GetTargetRoas() *common.TargetRoas {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_TargetRoas); ok {
return x.TargetRoas
}
return nil
}
func (m *Campaign) GetTargetSpend() *common.TargetSpend {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_TargetSpend); ok {
return x.TargetSpend
}
return nil
}
func (m *Campaign) GetPercentCpc() *common.PercentCpc {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_PercentCpc); ok {
return x.PercentCpc
}
return nil
}
func (m *Campaign) GetTargetCpm() *common.TargetCpm {
if x, ok := m.GetCampaignBiddingStrategy().(*Campaign_TargetCpm); ok {
return x.TargetCpm
}
return nil
}
// XXX_OneofWrappers is for the internal use of the proto package.
func (*Campaign) XXX_OneofWrappers() []interface{} {
return []interface{}{
(*Campaign_BiddingStrategy)(nil),
(*Campaign_Commission)(nil),
(*Campaign_ManualCpc)(nil),
(*Campaign_ManualCpm)(nil),
(*Campaign_ManualCpv)(nil),
(*Campaign_MaximizeConversions)(nil),
(*Campaign_MaximizeConversionValue)(nil),
(*Campaign_TargetCpa)(nil),
(*Campaign_TargetImpressionShare)(nil),
(*Campaign_TargetRoas)(nil),
(*Campaign_TargetSpend)(nil),
(*Campaign_PercentCpc)(nil),
(*Campaign_TargetCpm)(nil),
}
}
// The network settings for the campaign.
type Campaign_NetworkSettings struct {
// Whether ads will be served with google.com search results.
TargetGoogleSearch *wrappers.BoolValue `protobuf:"bytes,1,opt,name=target_google_search,json=targetGoogleSearch,proto3" json:"target_google_search,omitempty"`
// Whether ads will be served on partner sites in the Google Search Network
// (requires `target_google_search` to also be `true`).
TargetSearchNetwork *wrappers.BoolValue `protobuf:"bytes,2,opt,name=target_search_network,json=targetSearchNetwork,proto3" json:"target_search_network,omitempty"`
// Whether ads will be served on specified placements in the Google Display
// Network. Placements are specified using the Placement criterion.
TargetContentNetwork *wrappers.BoolValue `protobuf:"bytes,3,opt,name=target_content_network,json=targetContentNetwork,proto3" json:"target_content_network,omitempty"`
// Whether ads will be served on the Google Partner Network.
// This is available only to some select Google partner accounts.
TargetPartnerSearchNetwork *wrappers.BoolValue `protobuf:"bytes,4,opt,name=target_partner_search_network,json=targetPartnerSearchNetwork,proto3" json:"target_partner_search_network,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_NetworkSettings) Reset() { *m = Campaign_NetworkSettings{} }
func (m *Campaign_NetworkSettings) String() string { return proto.CompactTextString(m) }
func (*Campaign_NetworkSettings) ProtoMessage() {}
func (*Campaign_NetworkSettings) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 0}
}
func (m *Campaign_NetworkSettings) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_NetworkSettings.Unmarshal(m, b)
}
func (m *Campaign_NetworkSettings) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_NetworkSettings.Marshal(b, m, deterministic)
}
func (m *Campaign_NetworkSettings) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_NetworkSettings.Merge(m, src)
}
func (m *Campaign_NetworkSettings) XXX_Size() int {
return xxx_messageInfo_Campaign_NetworkSettings.Size(m)
}
func (m *Campaign_NetworkSettings) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_NetworkSettings.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_NetworkSettings proto.InternalMessageInfo
func (m *Campaign_NetworkSettings) GetTargetGoogleSearch() *wrappers.BoolValue {
if m != nil {
return m.TargetGoogleSearch
}
return nil
}
func (m *Campaign_NetworkSettings) GetTargetSearchNetwork() *wrappers.BoolValue {
if m != nil {
return m.TargetSearchNetwork
}
return nil
}
func (m *Campaign_NetworkSettings) GetTargetContentNetwork() *wrappers.BoolValue {
if m != nil {
return m.TargetContentNetwork
}
return nil
}
func (m *Campaign_NetworkSettings) GetTargetPartnerSearchNetwork() *wrappers.BoolValue {
if m != nil {
return m.TargetPartnerSearchNetwork
}
return nil
}
// Campaign-level settings for hotel ads.
type Campaign_HotelSettingInfo struct {
// Immutable. The linked Hotel Center account.
HotelCenterId *wrappers.Int64Value `protobuf:"bytes,1,opt,name=hotel_center_id,json=hotelCenterId,proto3" json:"hotel_center_id,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_HotelSettingInfo) Reset() { *m = Campaign_HotelSettingInfo{} }
func (m *Campaign_HotelSettingInfo) String() string { return proto.CompactTextString(m) }
func (*Campaign_HotelSettingInfo) ProtoMessage() {}
func (*Campaign_HotelSettingInfo) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 1}
}
func (m *Campaign_HotelSettingInfo) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_HotelSettingInfo.Unmarshal(m, b)
}
func (m *Campaign_HotelSettingInfo) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_HotelSettingInfo.Marshal(b, m, deterministic)
}
func (m *Campaign_HotelSettingInfo) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_HotelSettingInfo.Merge(m, src)
}
func (m *Campaign_HotelSettingInfo) XXX_Size() int {
return xxx_messageInfo_Campaign_HotelSettingInfo.Size(m)
}
func (m *Campaign_HotelSettingInfo) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_HotelSettingInfo.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_HotelSettingInfo proto.InternalMessageInfo
func (m *Campaign_HotelSettingInfo) GetHotelCenterId() *wrappers.Int64Value {
if m != nil {
return m.HotelCenterId
}
return nil
}
// The setting for controlling Dynamic Search Ads (DSA).
type Campaign_DynamicSearchAdsSetting struct {
// The Internet domain name that this setting represents, e.g., "google.com"
// or "www.google.com".
DomainName *wrappers.StringValue `protobuf:"bytes,1,opt,name=domain_name,json=domainName,proto3" json:"domain_name,omitempty"`
// The language code specifying the language of the domain, e.g., "en".
LanguageCode *wrappers.StringValue `protobuf:"bytes,2,opt,name=language_code,json=languageCode,proto3" json:"language_code,omitempty"`
// Whether the campaign uses advertiser supplied URLs exclusively.
UseSuppliedUrlsOnly *wrappers.BoolValue `protobuf:"bytes,3,opt,name=use_supplied_urls_only,json=useSuppliedUrlsOnly,proto3" json:"use_supplied_urls_only,omitempty"`
// Output only. The list of page feeds associated with the campaign.
Feeds []*wrappers.StringValue `protobuf:"bytes,5,rep,name=feeds,proto3" json:"feeds,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_DynamicSearchAdsSetting) Reset() { *m = Campaign_DynamicSearchAdsSetting{} }
func (m *Campaign_DynamicSearchAdsSetting) String() string { return proto.CompactTextString(m) }
func (*Campaign_DynamicSearchAdsSetting) ProtoMessage() {}
func (*Campaign_DynamicSearchAdsSetting) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 2}
}
func (m *Campaign_DynamicSearchAdsSetting) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_DynamicSearchAdsSetting.Unmarshal(m, b)
}
func (m *Campaign_DynamicSearchAdsSetting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_DynamicSearchAdsSetting.Marshal(b, m, deterministic)
}
func (m *Campaign_DynamicSearchAdsSetting) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_DynamicSearchAdsSetting.Merge(m, src)
}
func (m *Campaign_DynamicSearchAdsSetting) XXX_Size() int {
return xxx_messageInfo_Campaign_DynamicSearchAdsSetting.Size(m)
}
func (m *Campaign_DynamicSearchAdsSetting) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_DynamicSearchAdsSetting.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_DynamicSearchAdsSetting proto.InternalMessageInfo
func (m *Campaign_DynamicSearchAdsSetting) GetDomainName() *wrappers.StringValue {
if m != nil {
return m.DomainName
}
return nil
}
func (m *Campaign_DynamicSearchAdsSetting) GetLanguageCode() *wrappers.StringValue {
if m != nil {
return m.LanguageCode
}
return nil
}
func (m *Campaign_DynamicSearchAdsSetting) GetUseSuppliedUrlsOnly() *wrappers.BoolValue {
if m != nil {
return m.UseSuppliedUrlsOnly
}
return nil
}
func (m *Campaign_DynamicSearchAdsSetting) GetFeeds() []*wrappers.StringValue {
if m != nil {
return m.Feeds
}
return nil
}
// Selective optimization setting for this campaign, which includes a set of
// conversion actions to optimize this campaign towards.
type Campaign_SelectiveOptimization struct {
// The selected set of conversion actions for optimizing this campaign.
ConversionActions []*wrappers.StringValue `protobuf:"bytes,1,rep,name=conversion_actions,json=conversionActions,proto3" json:"conversion_actions,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_SelectiveOptimization) Reset() { *m = Campaign_SelectiveOptimization{} }
func (m *Campaign_SelectiveOptimization) String() string { return proto.CompactTextString(m) }
func (*Campaign_SelectiveOptimization) ProtoMessage() {}
func (*Campaign_SelectiveOptimization) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 3}
}
func (m *Campaign_SelectiveOptimization) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_SelectiveOptimization.Unmarshal(m, b)
}
func (m *Campaign_SelectiveOptimization) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_SelectiveOptimization.Marshal(b, m, deterministic)
}
func (m *Campaign_SelectiveOptimization) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_SelectiveOptimization.Merge(m, src)
}
func (m *Campaign_SelectiveOptimization) XXX_Size() int {
return xxx_messageInfo_Campaign_SelectiveOptimization.Size(m)
}
func (m *Campaign_SelectiveOptimization) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_SelectiveOptimization.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_SelectiveOptimization proto.InternalMessageInfo
func (m *Campaign_SelectiveOptimization) GetConversionActions() []*wrappers.StringValue {
if m != nil {
return m.ConversionActions
}
return nil
}
// The setting for Shopping campaigns. Defines the universe of products that
// can be advertised by the campaign, and how this campaign interacts with
// other Shopping campaigns.
type Campaign_ShoppingSetting struct {
// Immutable. ID of the Merchant Center account.
// This field is required for create operations. This field is immutable for
// Shopping campaigns.
MerchantId *wrappers.Int64Value `protobuf:"bytes,1,opt,name=merchant_id,json=merchantId,proto3" json:"merchant_id,omitempty"`
// Immutable. Sales country of products to include in the campaign.
// This field is required for Shopping campaigns. This field is immutable.
// This field is optional for non-Shopping campaigns, but it must be equal
// to 'ZZ' if set.
SalesCountry *wrappers.StringValue `protobuf:"bytes,2,opt,name=sales_country,json=salesCountry,proto3" json:"sales_country,omitempty"`
// Priority of the campaign. Campaigns with numerically higher priorities
// take precedence over those with lower priorities.
// This field is required for Shopping campaigns, with values between 0 and
// 2, inclusive.
// This field is optional for Smart Shopping campaigns, but must be equal to
// 3 if set.
CampaignPriority *wrappers.Int32Value `protobuf:"bytes,3,opt,name=campaign_priority,json=campaignPriority,proto3" json:"campaign_priority,omitempty"`
// Whether to include local products.
EnableLocal *wrappers.BoolValue `protobuf:"bytes,4,opt,name=enable_local,json=enableLocal,proto3" json:"enable_local,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_ShoppingSetting) Reset() { *m = Campaign_ShoppingSetting{} }
func (m *Campaign_ShoppingSetting) String() string { return proto.CompactTextString(m) }
func (*Campaign_ShoppingSetting) ProtoMessage() {}
func (*Campaign_ShoppingSetting) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 4}
}
func (m *Campaign_ShoppingSetting) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_ShoppingSetting.Unmarshal(m, b)
}
func (m *Campaign_ShoppingSetting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_ShoppingSetting.Marshal(b, m, deterministic)
}
func (m *Campaign_ShoppingSetting) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_ShoppingSetting.Merge(m, src)
}
func (m *Campaign_ShoppingSetting) XXX_Size() int {
return xxx_messageInfo_Campaign_ShoppingSetting.Size(m)
}
func (m *Campaign_ShoppingSetting) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_ShoppingSetting.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_ShoppingSetting proto.InternalMessageInfo
func (m *Campaign_ShoppingSetting) GetMerchantId() *wrappers.Int64Value {
if m != nil {
return m.MerchantId
}
return nil
}
func (m *Campaign_ShoppingSetting) GetSalesCountry() *wrappers.StringValue {
if m != nil {
return m.SalesCountry
}
return nil
}
func (m *Campaign_ShoppingSetting) GetCampaignPriority() *wrappers.Int32Value {
if m != nil {
return m.CampaignPriority
}
return nil
}
func (m *Campaign_ShoppingSetting) GetEnableLocal() *wrappers.BoolValue {
if m != nil {
return m.EnableLocal
}
return nil
}
// Describes how unbranded pharma ads will be displayed.
type Campaign_VanityPharma struct {
// The display mode for vanity pharma URLs.
VanityPharmaDisplayUrlMode enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode `protobuf:"varint,1,opt,name=vanity_pharma_display_url_mode,json=vanityPharmaDisplayUrlMode,proto3,enum=google.ads.googleads.v3.enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode" json:"vanity_pharma_display_url_mode,omitempty"`
// The text that will be displayed in display URL of the text ad when
// website description is the selected display mode for vanity pharma URLs.
VanityPharmaText enums.VanityPharmaTextEnum_VanityPharmaText `protobuf:"varint,2,opt,name=vanity_pharma_text,json=vanityPharmaText,proto3,enum=google.ads.googleads.v3.enums.VanityPharmaTextEnum_VanityPharmaText" json:"vanity_pharma_text,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_VanityPharma) Reset() { *m = Campaign_VanityPharma{} }
func (m *Campaign_VanityPharma) String() string { return proto.CompactTextString(m) }
func (*Campaign_VanityPharma) ProtoMessage() {}
func (*Campaign_VanityPharma) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 5}
}
func (m *Campaign_VanityPharma) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_VanityPharma.Unmarshal(m, b)
}
func (m *Campaign_VanityPharma) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_VanityPharma.Marshal(b, m, deterministic)
}
func (m *Campaign_VanityPharma) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_VanityPharma.Merge(m, src)
}
func (m *Campaign_VanityPharma) XXX_Size() int {
return xxx_messageInfo_Campaign_VanityPharma.Size(m)
}
func (m *Campaign_VanityPharma) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_VanityPharma.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_VanityPharma proto.InternalMessageInfo
func (m *Campaign_VanityPharma) GetVanityPharmaDisplayUrlMode() enums.VanityPharmaDisplayUrlModeEnum_VanityPharmaDisplayUrlMode {
if m != nil {
return m.VanityPharmaDisplayUrlMode
}
return enums.VanityPharmaDisplayUrlModeEnum_UNSPECIFIED
}
func (m *Campaign_VanityPharma) GetVanityPharmaText() enums.VanityPharmaTextEnum_VanityPharmaText {
if m != nil {
return m.VanityPharmaText
}
return enums.VanityPharmaTextEnum_UNSPECIFIED
}
// Campaign-level settings for tracking information.
type Campaign_TrackingSetting struct {
// Output only. The url used for dynamic tracking.
TrackingUrl *wrappers.StringValue `protobuf:"bytes,1,opt,name=tracking_url,json=trackingUrl,proto3" json:"tracking_url,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_TrackingSetting) Reset() { *m = Campaign_TrackingSetting{} }
func (m *Campaign_TrackingSetting) String() string { return proto.CompactTextString(m) }
func (*Campaign_TrackingSetting) ProtoMessage() {}
func (*Campaign_TrackingSetting) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 6}
}
func (m *Campaign_TrackingSetting) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_TrackingSetting.Unmarshal(m, b)
}
func (m *Campaign_TrackingSetting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_TrackingSetting.Marshal(b, m, deterministic)
}
func (m *Campaign_TrackingSetting) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_TrackingSetting.Merge(m, src)
}
func (m *Campaign_TrackingSetting) XXX_Size() int {
return xxx_messageInfo_Campaign_TrackingSetting.Size(m)
}
func (m *Campaign_TrackingSetting) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_TrackingSetting.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_TrackingSetting proto.InternalMessageInfo
func (m *Campaign_TrackingSetting) GetTrackingUrl() *wrappers.StringValue {
if m != nil {
return m.TrackingUrl
}
return nil
}
// Represents a collection of settings related to ads geotargeting.
type Campaign_GeoTargetTypeSetting struct {
// The setting used for positive geotargeting in this particular campaign.
PositiveGeoTargetType enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType `protobuf:"varint,1,opt,name=positive_geo_target_type,json=positiveGeoTargetType,proto3,enum=google.ads.googleads.v3.enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType" json:"positive_geo_target_type,omitempty"`
// The setting used for negative geotargeting in this particular campaign.
NegativeGeoTargetType enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType `protobuf:"varint,2,opt,name=negative_geo_target_type,json=negativeGeoTargetType,proto3,enum=google.ads.googleads.v3.enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType" json:"negative_geo_target_type,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_GeoTargetTypeSetting) Reset() { *m = Campaign_GeoTargetTypeSetting{} }
func (m *Campaign_GeoTargetTypeSetting) String() string { return proto.CompactTextString(m) }
func (*Campaign_GeoTargetTypeSetting) ProtoMessage() {}
func (*Campaign_GeoTargetTypeSetting) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 7}
}
func (m *Campaign_GeoTargetTypeSetting) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_GeoTargetTypeSetting.Unmarshal(m, b)
}
func (m *Campaign_GeoTargetTypeSetting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_GeoTargetTypeSetting.Marshal(b, m, deterministic)
}
func (m *Campaign_GeoTargetTypeSetting) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_GeoTargetTypeSetting.Merge(m, src)
}
func (m *Campaign_GeoTargetTypeSetting) XXX_Size() int {
return xxx_messageInfo_Campaign_GeoTargetTypeSetting.Size(m)
}
func (m *Campaign_GeoTargetTypeSetting) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_GeoTargetTypeSetting.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_GeoTargetTypeSetting proto.InternalMessageInfo
func (m *Campaign_GeoTargetTypeSetting) GetPositiveGeoTargetType() enums.PositiveGeoTargetTypeEnum_PositiveGeoTargetType {
if m != nil {
return m.PositiveGeoTargetType
}
return enums.PositiveGeoTargetTypeEnum_UNSPECIFIED
}
func (m *Campaign_GeoTargetTypeSetting) GetNegativeGeoTargetType() enums.NegativeGeoTargetTypeEnum_NegativeGeoTargetType {
if m != nil {
return m.NegativeGeoTargetType
}
return enums.NegativeGeoTargetTypeEnum_UNSPECIFIED
}
// Campaign-level settings for App Campaigns.
type Campaign_AppCampaignSetting struct {
// Represents the goal which the bidding strategy of this app campaign
// should optimize towards.
BiddingStrategyGoalType enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType `protobuf:"varint,1,opt,name=bidding_strategy_goal_type,json=biddingStrategyGoalType,proto3,enum=google.ads.googleads.v3.enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType" json:"bidding_strategy_goal_type,omitempty"`
// Immutable. A string that uniquely identifies a mobile application.
AppId *wrappers.StringValue `protobuf:"bytes,2,opt,name=app_id,json=appId,proto3" json:"app_id,omitempty"`
// Immutable. The application store that distributes this specific app.
AppStore enums.AppCampaignAppStoreEnum_AppCampaignAppStore `protobuf:"varint,3,opt,name=app_store,json=appStore,proto3,enum=google.ads.googleads.v3.enums.AppCampaignAppStoreEnum_AppCampaignAppStore" json:"app_store,omitempty"`
XXX_NoUnkeyedLiteral struct{} `json:"-"`
XXX_unrecognized []byte `json:"-"`
XXX_sizecache int32 `json:"-"`
}
func (m *Campaign_AppCampaignSetting) Reset() { *m = Campaign_AppCampaignSetting{} }
func (m *Campaign_AppCampaignSetting) String() string { return proto.CompactTextString(m) }
func (*Campaign_AppCampaignSetting) ProtoMessage() {}
func (*Campaign_AppCampaignSetting) Descriptor() ([]byte, []int) {
return fileDescriptor_fc9f8fbba6491262, []int{0, 8}
}
func (m *Campaign_AppCampaignSetting) XXX_Unmarshal(b []byte) error {
return xxx_messageInfo_Campaign_AppCampaignSetting.Unmarshal(m, b)
}
func (m *Campaign_AppCampaignSetting) XXX_Marshal(b []byte, deterministic bool) ([]byte, error) {
return xxx_messageInfo_Campaign_AppCampaignSetting.Marshal(b, m, deterministic)
}
func (m *Campaign_AppCampaignSetting) XXX_Merge(src proto.Message) {
xxx_messageInfo_Campaign_AppCampaignSetting.Merge(m, src)
}
func (m *Campaign_AppCampaignSetting) XXX_Size() int {
return xxx_messageInfo_Campaign_AppCampaignSetting.Size(m)
}
func (m *Campaign_AppCampaignSetting) XXX_DiscardUnknown() {
xxx_messageInfo_Campaign_AppCampaignSetting.DiscardUnknown(m)
}
var xxx_messageInfo_Campaign_AppCampaignSetting proto.InternalMessageInfo
func (m *Campaign_AppCampaignSetting) GetBiddingStrategyGoalType() enums.AppCampaignBiddingStrategyGoalTypeEnum_AppCampaignBiddingStrategyGoalType {
if m != nil {
return m.BiddingStrategyGoalType
}
return enums.AppCampaignBiddingStrategyGoalTypeEnum_UNSPECIFIED
}
func (m *Campaign_AppCampaignSetting) GetAppId() *wrappers.StringValue {
if m != nil {
return m.AppId
}
return nil
}
func (m *Campaign_AppCampaignSetting) GetAppStore() enums.AppCampaignAppStoreEnum_AppCampaignAppStore {
if m != nil {
return m.AppStore
}
return enums.AppCampaignAppStoreEnum_UNSPECIFIED
}
func init() {
proto.RegisterType((*Campaign)(nil), "google.ads.googleads.v3.resources.Campaign")
proto.RegisterType((*Campaign_NetworkSettings)(nil), "google.ads.googleads.v3.resources.Campaign.NetworkSettings")
proto.RegisterType((*Campaign_HotelSettingInfo)(nil), "google.ads.googleads.v3.resources.Campaign.HotelSettingInfo")
proto.RegisterType((*Campaign_DynamicSearchAdsSetting)(nil), "google.ads.googleads.v3.resources.Campaign.DynamicSearchAdsSetting")
proto.RegisterType((*Campaign_SelectiveOptimization)(nil), "google.ads.googleads.v3.resources.Campaign.SelectiveOptimization")
proto.RegisterType((*Campaign_ShoppingSetting)(nil), "google.ads.googleads.v3.resources.Campaign.ShoppingSetting")
proto.RegisterType((*Campaign_VanityPharma)(nil), "google.ads.googleads.v3.resources.Campaign.VanityPharma")
proto.RegisterType((*Campaign_TrackingSetting)(nil), "google.ads.googleads.v3.resources.Campaign.TrackingSetting")
proto.RegisterType((*Campaign_GeoTargetTypeSetting)(nil), "google.ads.googleads.v3.resources.Campaign.GeoTargetTypeSetting")
proto.RegisterType((*Campaign_AppCampaignSetting)(nil), "google.ads.googleads.v3.resources.Campaign.AppCampaignSetting")
}
func init() {
proto.RegisterFile("google/ads/googleads/v3/resources/campaign.proto", fileDescriptor_fc9f8fbba6491262)
}
var fileDescriptor_fc9f8fbba6491262 = []byte{
// 2408 bytes of a gzipped FileDescriptorProto
0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x5a, 0x5b, 0x73, 0x1b, 0xb7,
0xf5, 0x17, 0xa9, 0xc8, 0x7f, 0x1b, 0xba, 0x1a, 0xba, 0xad, 0xe8, 0x7b, 0xfe, 0x75, 0x22, 0xd9,
0x0e, 0xa9, 0x48, 0xb1, 0x93, 0xca, 0x49, 0xc6, 0x14, 0x7d, 0x91, 0x5c, 0x5b, 0x66, 0x97, 0xb2,
0xea, 0x66, 0xec, 0xd9, 0x01, 0x77, 0x41, 0x6a, 0xc7, 0x7b, 0x41, 0x00, 0x90, 0x16, 0x93, 0x49,
0xa7, 0x33, 0x7d, 0xe8, 0x63, 0x5f, 0xda, 0x97, 0x4e, 0x66, 0x3a, 0xed, 0x4c, 0x5e, 0xf2, 0x45,
0x3a, 0xd3, 0x4f, 0xe1, 0x87, 0x3e, 0xe5, 0x23, 0xe8, 0xa9, 0x83, 0xcb, 0xae, 0x96, 0xd7, 0x5d,
0xbe, 0x2d, 0x0e, 0xf0, 0xfb, 0x9d, 0x83, 0x03, 0xe0, 0xe0, 0x1c, 0x90, 0x60, 0xb3, 0x19, 0x86,
0x4d, 0x0f, 0x97, 0x90, 0xc3, 0x4a, 0xea, 0x53, 0x7c, 0xb5, 0xb7, 0x4b, 0x14, 0xb3, 0xb0, 0x45,
0x6d, 0xcc, 0x4a, 0x36, 0xf2, 0x09, 0x72, 0x9b, 0x41, 0x91, 0xd0, 0x90, 0x87, 0xf0, 0x86, 0x1a,
0x56, 0x44, 0x0e, 0x2b, 0xc6, 0x88, 0x62, 0x7b, 0xbb, 0x18, 0x23, 0x0a, 0x77, 0x86, 0x91, 0xda,
0xa1, 0xef, 0x87, 0x41, 0xa9, 0xee, 0x3a, 0x8e, 0x1b, 0x34, 0x15, 0x61, 0xe1, 0x6e, 0xca, 0x68,
0xbb, 0xc5, 0x78, 0xe8, 0x5b, 0x04, 0x51, 0xe4, 0x63, 0x8e, 0xa9, 0x86, 0x6d, 0xa5, 0xc0, 0x1a,
0x14, 0x7f, 0xdb, 0xc2, 0x81, 0xdd, 0xb1, 0x6c, 0x44, 0x34, 0xe6, 0xeb, 0x14, 0x0c, 0xc5, 0xc8,
0xb3, 0xb8, 0xeb, 0x63, 0x4b, 0x9b, 0x68, 0x31, 0xcc, 0xf9, 0x99, 0xa9, 0xf7, 0x52, 0xf0, 0x1c,
0xd1, 0x26, 0xe6, 0xfd, 0xb8, 0xdd, 0x61, 0x38, 0x1c, 0xb4, 0x7c, 0x56, 0x42, 0x8e, 0xc5, 0x30,
0x6d, 0x0b, 0x5c, 0x48, 0xb8, 0xeb, 0xbb, 0xdf, 0x21, 0xee, 0x86, 0x81, 0xc5, 0x38, 0xe2, 0x2d,
0xa6, 0x39, 0x1e, 0xa4, 0x71, 0xb4, 0x31, 0xe5, 0x2e, 0x13, 0x24, 0xf6, 0x31, 0x0a, 0x02, 0xec,
0x59, 0xac, 0x55, 0xb7, 0x78, 0x87, 0x60, 0xcd, 0xf0, 0xe5, 0xf8, 0x0c, 0x09, 0xf4, 0x4e, 0x0a,
0x9a, 0x10, 0x2b, 0xda, 0x29, 0x96, 0x68, 0x30, 0x1e, 0xd2, 0x08, 0xfb, 0x9b, 0x31, 0xb0, 0xb1,
0xe7, 0x39, 0x45, 0x1c, 0x37, 0x3b, 0x56, 0x33, 0x44, 0x5d, 0x86, 0xfc, 0x7a, 0x34, 0x59, 0x1f,
0x3e, 0xbb, 0x07, 0xea, 0x14, 0x05, 0x8e, 0xc5, 0x50, 0x03, 0xf3, 0x8e, 0xc5, 0x5a, 0x2e, 0x47,
0x75, 0xd7, 0x73, 0x79, 0x27, 0x1b, 0x3a, 0x9e, 0x01, 0x3e, 0x21, 0x98, 0xba, 0x3e, 0x0e, 0x78,
0x52, 0xf7, 0xfd, 0x8c, 0xe8, 0x68, 0x27, 0x74, 0x2d, 0xfe, 0x76, 0x56, 0x70, 0x12, 0x94, 0x62,
0x6f, 0x80, 0x9b, 0x88, 0xbb, 0x6d, 0x6c, 0x35, 0x71, 0x68, 0xa9, 0x9d, 0x9b, 0xb4, 0x77, 0x73,
0x34, 0x9a, 0xa0, 0x8e, 0x9c, 0xa1, 0x1f, 0x3a, 0x19, 0xbd, 0x4b, 0x42, 0xe6, 0x8e, 0xd0, 0x97,
0x72, 0x46, 0xda, 0x28, 0x70, 0x79, 0xc7, 0x22, 0xc7, 0x88, 0xfa, 0xc8, 0x72, 0x5c, 0x46, 0x3c,
0xd4, 0xb1, 0x5a, 0xd4, 0x4b, 0x5a, 0x70, 0x6f, 0x1c, 0x0e, 0x8e, 0x4f, 0xb8, 0xc6, 0x5d, 0x8b,
0x70, 0xc4, 0x2d, 0x35, 0x5c, 0xec, 0x39, 0x56, 0x1d, 0x1f, 0xa3, 0xb6, 0x1b, 0x46, 0xc1, 0x66,
0x2d, 0x31, 0x20, 0x8a, 0x73, 0xba, 0xeb, 0xaa, 0xee, 0x92, 0xad, 0x7a, 0xab, 0x51, 0x7a, 0x47,
0x11, 0x21, 0x98, 0x46, 0xab, 0x70, 0x39, 0x01, 0x45, 0x41, 0x10, 0x72, 0x79, 0xb6, 0x75, 0xef,
0x87, 0x7f, 0xbb, 0x07, 0xce, 0x57, 0xf4, 0xea, 0xc1, 0x03, 0x30, 0x1b, 0x91, 0x5b, 0x01, 0xf2,
0xb1, 0x91, 0xbb, 0x9e, 0x5b, 0xbf, 0xb0, 0xbb, 0xf1, 0xbe, 0x3c, 0x75, 0x5a, 0xfe, 0x7f, 0x70,
0xe3, 0x2c, 0xdc, 0xea, 0x2f, 0xe2, 0xb2, 0xa2, 0x1d, 0xfa, 0xa5, 0x88, 0xc1, 0x9c, 0x89, 0xf0,
0x07, 0xc8, 0xc7, 0x70, 0x13, 0xe4, 0x5d, 0xc7, 0x98, 0xbc, 0x9e, 0x5b, 0x9f, 0xde, 0xba, 0xa4,
0x31, 0xc5, 0xc8, 0xce, 0xe2, 0x7e, 0xc0, 0xef, 0x7d, 0x76, 0x84, 0xbc, 0x16, 0xde, 0x9d, 0x7c,
0x5f, 0x9e, 0x34, 0xf3, 0xae, 0x03, 0x37, 0xc1, 0x07, 0x52, 0xf1, 0x07, 0x12, 0x73, 0xb9, 0x0f,
0x53, 0xe3, 0xd4, 0x0d, 0x9a, 0x12, 0x64, 0xca, 0x91, 0xf0, 0x15, 0x38, 0xa7, 0x36, 0x9d, 0x31,
0x75, 0x3d, 0xb7, 0x3e, 0xb7, 0xf5, 0xa0, 0x38, 0xec, 0x7e, 0x90, 0x6b, 0x50, 0x8c, 0x4c, 0xad,
0x49, 0xd0, 0xa3, 0xa0, 0xe5, 0xf7, 0x88, 0x4c, 0xcd, 0x07, 0xbf, 0x03, 0x73, 0xdd, 0x67, 0xc1,
0x58, 0x96, 0x1a, 0x0e, 0xb2, 0x6a, 0x50, 0xe0, 0x41, 0x8a, 0x92, 0x3d, 0x6a, 0xf2, 0xb3, 0x2c,
0x29, 0x83, 0xff, 0xc8, 0x81, 0xab, 0xa3, 0xa3, 0xb2, 0x71, 0x5e, 0x1a, 0xf3, 0x4d, 0x8a, 0x31,
0x65, 0x47, 0x2b, 0x7b, 0x91, 0xa0, 0x48, 0x98, 0x34, 0xa2, 0xdf, 0xbc, 0x84, 0x86, 0x77, 0xc2,
0xbf, 0xe4, 0x80, 0x31, 0x2c, 0x62, 0x1b, 0x17, 0xa4, 0x6d, 0xd5, 0x54, 0xdb, 0x62, 0x78, 0x45,
0xa1, 0x0f, 0x3b, 0x04, 0x6b, 0xb3, 0x06, 0x75, 0x09, 0x57, 0x4d, 0x99, 0x2b, 0x68, 0x60, 0x27,
0xfc, 0x31, 0x07, 0x2e, 0x8f, 0xba, 0x85, 0x0c, 0x20, 0xad, 0x3a, 0x1a, 0xdb, 0xaa, 0x5a, 0xab,
0x3e, 0xc2, 0x30, 0xdd, 0xab, 0x6c, 0x5b, 0x43, 0xc3, 0xfa, 0x61, 0x15, 0x2c, 0x73, 0x8a, 0xec,
0xb7, 0xc2, 0x34, 0x11, 0x36, 0x38, 0xf6, 0x89, 0x87, 0x38, 0x36, 0xa6, 0x33, 0xec, 0xf5, 0xc5,
0x08, 0xfa, 0x92, 0x7a, 0x87, 0x1a, 0x08, 0x6d, 0xb0, 0x2c, 0x88, 0x7a, 0xf3, 0x13, 0x66, 0xcc,
0x5c, 0x9f, 0x5c, 0x9f, 0xde, 0x2a, 0x0d, 0x9d, 0xa8, 0xca, 0x16, 0x8a, 0x15, 0x09, 0xac, 0x46,
0x38, 0x73, 0xb1, 0x45, 0xbd, 0x1e, 0x19, 0x83, 0xdf, 0x82, 0xb5, 0xa1, 0x59, 0x89, 0xf1, 0xb1,
0x34, 0xfd, 0x5e, 0x9a, 0x22, 0x13, 0x23, 0xef, 0xd0, 0xf5, 0xf1, 0xae, 0x82, 0xd7, 0x14, 0xda,
0x5c, 0xa1, 0x03, 0xe5, 0xb0, 0x01, 0x16, 0x02, 0xcc, 0xdf, 0x85, 0xf4, 0x6d, 0xa4, 0x88, 0x19,
0x73, 0x52, 0xd3, 0xfd, 0x62, 0x6a, 0xf2, 0x17, 0x1f, 0xb2, 0xe2, 0x81, 0xe2, 0xd0, 0xac, 0xcc,
0x9c, 0x0f, 0xba, 0x05, 0xb0, 0x01, 0x66, 0x8f, 0x43, 0x2e, 0x76, 0x88, 0x9e, 0xce, 0x75, 0xa9,
0xe4, 0xcb, 0x71, 0x94, 0xec, 0x09, 0x02, 0xcd, 0xb8, 0x1f, 0x34, 0x42, 0xb5, 0x0d, 0x66, 0x8e,
0x13, 0x62, 0xf8, 0xc7, 0x1c, 0x28, 0x38, 0x9d, 0x00, 0xf9, 0xae, 0x6d, 0x31, 0x8c, 0xa8, 0x7d,
0x6c, 0x21, 0x87, 0xc5, 0x5a, 0x6f, 0x48, 0xad, 0x95, 0x71, 0xb4, 0x3e, 0x54, 0x6c, 0x35, 0x49,
0x56, 0x76, 0x58, 0xe4, 0xd1, 0x55, 0x67, 0x70, 0x87, 0x70, 0x29, 0x3b, 0x0e, 0x09, 0x49, 0x2e,
0xde, 0xaf, 0xc6, 0x77, 0x69, 0x4d, 0x73, 0x44, 0xfa, 0xe6, 0x59, 0xb7, 0x00, 0xbe, 0x01, 0x17,
0xfb, 0x72, 0x50, 0xe3, 0xb6, 0x54, 0xb4, 0x99, 0xb6, 0x4b, 0x0e, 0x23, 0x60, 0xc4, 0xbe, 0xc0,
0x7b, 0x24, 0xf0, 0x1d, 0x58, 0xed, 0xb9, 0xbc, 0x63, 0x25, 0x25, 0xa9, 0xe4, 0xc1, 0x38, 0xb3,
0x79, 0x82, 0x43, 0xa5, 0x53, 0x9c, 0xcf, 0x48, 0xe9, 0x52, 0x73, 0x80, 0x14, 0x12, 0xb0, 0xd4,
0x95, 0x24, 0x46, 0x5a, 0xb7, 0xa5, 0xd6, 0xaf, 0xc7, 0xd1, 0x5a, 0x26, 0xe4, 0xec, 0x1e, 0x50,
0x3a, 0x21, 0xea, 0x93, 0x41, 0x07, 0x9c, 0xf3, 0x50, 0x1d, 0x7b, 0xcc, 0xb8, 0x2b, 0x4f, 0xf3,
0xc8, 0xf8, 0xb0, 0x5b, 0x7c, 0x5f, 0x9e, 0x3c, 0x2d, 0xaf, 0x83, 0x8f, 0x52, 0xaf, 0xe8, 0x67,
0x82, 0xd4, 0xd4, 0xdc, 0xf0, 0x0f, 0x60, 0xbe, 0x27, 0x5b, 0x34, 0x2e, 0x66, 0x8a, 0xdd, 0x11,
0xdd, 0xa3, 0x18, 0x1d, 0x87, 0xc8, 0xc1, 0x5d, 0xea, 0x9a, 0x9b, 0xc3, 0x5d, 0x42, 0xe8, 0x81,
0xd9, 0x3a, 0x62, 0x38, 0x76, 0xac, 0x71, 0x39, 0x3d, 0x18, 0x8a, 0x7c, 0x64, 0x32, 0x6b, 0x3e,
0x22, 0xd8, 0xe3, 0xfc, 0x86, 0x81, 0xf9, 0xb3, 0x34, 0xbf, 0xe5, 0x34, 0x31, 0x37, 0xce, 0x65,
0xd0, 0x77, 0xe7, 0xb4, 0xbc, 0x01, 0x3e, 0x4e, 0x55, 0xb6, 0x2b, 0x19, 0xcd, 0x39, 0xbb, 0xab,
0x0d, 0xff, 0x94, 0x03, 0xcb, 0x03, 0x6b, 0x02, 0x63, 0x45, 0x7a, 0xfa, 0x69, 0x8a, 0xa7, 0xa3,
0xe0, 0xa8, 0xa1, 0xb1, 0x9b, 0x07, 0xc8, 0x95, 0x8f, 0x17, 0xeb, 0xfd, 0x3d, 0xf0, 0x3e, 0x00,
0x8c, 0x23, 0xca, 0x2d, 0x47, 0x5c, 0x39, 0x8b, 0x19, 0xae, 0x9c, 0x0b, 0x72, 0xfc, 0x43, 0x71,
0xd1, 0x7c, 0x0e, 0xce, 0xe3, 0xc0, 0x51, 0xd0, 0xa5, 0x0c, 0xd0, 0xff, 0xc3, 0x81, 0x23, 0x81,
0x8f, 0xc1, 0x42, 0xc3, 0x0d, 0x90, 0x27, 0x2f, 0x3c, 0xd6, 0x6a, 0x34, 0xdc, 0x13, 0xe3, 0xa3,
0x0c, 0x04, 0x73, 0x12, 0xf5, 0x92, 0x7a, 0x35, 0x89, 0x81, 0xaf, 0xc0, 0x5c, 0x57, 0x39, 0xcd,
0x8c, 0x75, 0x79, 0x28, 0x3e, 0x4d, 0x8b, 0x29, 0x8f, 0x23, 0x54, 0x05, 0x91, 0x47, 0x01, 0xa7,
0x1d, 0x73, 0xb6, 0x91, 0x10, 0x31, 0xf8, 0xf7, 0x1c, 0xb8, 0xda, 0x76, 0x1d, 0x1c, 0x5a, 0xc3,
0x8a, 0x2f, 0xe3, 0x56, 0xa6, 0x03, 0xb1, 0x2b, 0xe0, 0x35, 0x89, 0xae, 0x9d, 0x81, 0xd5, 0x4a,
0x0d, 0xec, 0x52, 0x8b, 0x75, 0x49, 0x2a, 0x1f, 0x3c, 0x02, 0xbe, 0x01, 0xb3, 0x5d, 0x25, 0x83,
0x71, 0x47, 0xfa, 0xee, 0x8b, 0x71, 0xc2, 0xcd, 0x91, 0x24, 0xa8, 0x4a, 0xbc, 0x39, 0xd3, 0x4e,
0xb4, 0xe0, 0x09, 0x58, 0x61, 0xd8, 0xc3, 0xb6, 0x2c, 0x8a, 0x92, 0x29, 0xa6, 0xf1, 0x89, 0xd4,
0x53, 0x1e, 0xeb, 0x6a, 0x88, 0x98, 0x92, 0xb9, 0xa2, 0xb9, 0xcc, 0x06, 0x89, 0xe1, 0x5b, 0xb0,
0x10, 0xe7, 0x42, 0x51, 0x28, 0x2d, 0x8e, 0x7f, 0x1d, 0x1d, 0x6a, 0x0e, 0x1d, 0x33, 0x95, 0x47,
0xe7, 0x79, 0xb7, 0x14, 0xbe, 0x01, 0x33, 0xc9, 0x62, 0xd1, 0xf8, 0x4c, 0xae, 0xe7, 0x4e, 0xca,
0x7a, 0x56, 0x15, 0xe4, 0x79, 0xe8, 0xa8, 0xe3, 0x96, 0x68, 0x9b, 0xd3, 0xe4, 0xac, 0x01, 0x4f,
0xc0, 0x42, 0xef, 0xf1, 0x36, 0x56, 0x33, 0x44, 0x95, 0x4f, 0x4e, 0xcb, 0xb7, 0xc0, 0xfa, 0xd0,
0xa8, 0xd2, 0x73, 0xbc, 0xf7, 0x26, 0xcc, 0xf9, 0x9e, 0x73, 0x0d, 0x9f, 0x01, 0x20, 0xb6, 0xb9,
0xcb, 0x98, 0x58, 0xb3, 0x4f, 0xa5, 0xce, 0x5b, 0xa9, 0x49, 0x5f, 0x8c, 0xd8, 0x9b, 0x30, 0x13,
0x78, 0xf8, 0x14, 0x00, 0x1f, 0x05, 0x2d, 0xe4, 0x59, 0x36, 0xb1, 0x0d, 0x43, 0xb2, 0x6d, 0xa4,
0xb1, 0x3d, 0x97, 0x88, 0x0a, 0xb1, 0xf7, 0x26, 0xcc, 0x0b, 0x7e, 0xd4, 0xe8, 0xe2, 0xf2, 0x8d,
0xb5, 0xf1, 0xb8, 0xfc, 0x24, 0x97, 0x0f, 0x5f, 0x24, 0xb8, 0xda, 0xc6, 0xcd, 0xf1, 0xb8, 0xda,
0x72, 0x4f, 0x24, 0x09, 0xdb, 0xf0, 0x18, 0x2c, 0xf9, 0xe8, 0x44, 0x6c, 0x46, 0x6c, 0xd9, 0x61,
0xd0, 0xc6, 0x54, 0xcc, 0x9f, 0x19, 0x57, 0x25, 0xf5, 0x76, 0x3a, 0xb5, 0xc2, 0x56, 0xce, 0xa0,
0x7b, 0x13, 0xe6, 0xa2, 0xdf, 0x2f, 0x86, 0x2d, 0xb0, 0x36, 0x40, 0x93, 0xd5, 0x16, 0xeb, 0x6f,
0x5c, 0x93, 0xea, 0x3e, 0x1f, 0x5f, 0x9d, 0xdc, 0x3e, 0x7b, 0x13, 0xe6, 0xaa, 0x3f, 0xb8, 0x4b,
0x78, 0x5f, 0x67, 0x48, 0x36, 0x41, 0x46, 0x21, 0x9b, 0xc7, 0x54, 0xce, 0x53, 0x21, 0x48, 0x38,
0x8b, 0x47, 0x0d, 0x18, 0x82, 0x55, 0xcd, 0xe5, 0xfa, 0x84, 0x62, 0xb9, 0x55, 0x2c, 0x76, 0x8c,
0x28, 0x36, 0x36, 0x25, 0xf1, 0xdd, 0x6c, 0xc4, 0xfb, 0x31, 0xba, 0x26, 0xc0, 0x7b, 0x13, 0xe6,
0x32, 0x1f, 0xd4, 0x01, 0x9f, 0x83, 0x69, 0xad, 0x90, 0x86, 0x88, 0x19, 0x57, 0xb2, 0xed, 0x6a,
0xa5, 0xc4, 0x0c, 0x91, 0x58, 0x0b, 0x3d, 0x7b, 0xd1, 0x82, 0x55, 0x30, 0xa3, 0xe9, 0x18, 0xc1,
0x81, 0x63, 0x5c, 0x92, 0x7c, 0xb7, 0xb3, 0xf1, 0xd5, 0x04, 0x64, 0x6f, 0xc2, 0xd4, 0x16, 0xc9,
0xa6, 0x30, 0x90, 0x60, 0x6a, 0x8b, 0x70, 0x22, 0x0e, 0xca, 0x87, 0xd9, 0x0c, 0xac, 0x2a, 0x88,
0x3a, 0x29, 0x80, 0xc4, 0xad, 0xae, 0xc5, 0xf2, 0x8d, 0x8d, 0xf1, 0x16, 0xcb, 0x4f, 0x2e, 0x96,
0x5f, 0x78, 0x9f, 0x07, 0xf3, 0x3d, 0x55, 0x0f, 0x7c, 0x06, 0x96, 0x34, 0xbf, 0x22, 0xd2, 0x15,
0x88, 0x7c, 0xda, 0x99, 0xde, 0x2a, 0xf4, 0x85, 0xa8, 0xdd, 0x30, 0xf4, 0xd4, 0x25, 0x0c, 0x15,
0xee, 0x89, 0x1c, 0xa0, 0x2a, 0x0a, 0x78, 0x00, 0x96, 0x23, 0x77, 0xaa, 0x42, 0x46, 0xd7, 0x54,
0x46, 0x3e, 0x95, 0x6e, 0x51, 0x3b, 0x51, 0xe2, 0xb4, 0x95, 0xb0, 0x0a, 0x56, 0xa2, 0xd9, 0x87,
0x01, 0x17, 0x3e, 0x8d, 0x08, 0x27, 0x53, 0x09, 0xf5, 0xbc, 0x2a, 0x0a, 0x18, 0x31, 0xbe, 0x01,
0x57, 0x34, 0x23, 0x41, 0x94, 0x07, 0x98, 0xf6, 0x5a, 0xfa, 0x41, 0x2a, 0x71, 0x41, 0x11, 0x54,
0x15, 0xbe, 0xcb, 0xe0, 0xc2, 0x6b, 0xb0, 0xd0, 0x5b, 0xf2, 0xc1, 0x3d, 0x30, 0xaf, 0xea, 0x48,
0xb1, 0xa6, 0x98, 0x5a, 0xae, 0xa3, 0xbd, 0x9b, 0xf6, 0xe6, 0x35, 0x65, 0xaa, 0x02, 0xb4, 0x22,
0x71, 0xfb, 0x4e, 0xe1, 0xdf, 0x79, 0xb0, 0x3a, 0xa4, 0xb6, 0x83, 0x5f, 0x81, 0x69, 0x27, 0xf4,
0x91, 0x1b, 0x9c, 0x3d, 0xcd, 0xa5, 0xa5, 0x51, 0x40, 0x01, 0xe4, 0x5b, 0x5c, 0x19, 0xcc, 0x7a,
0x28, 0x68, 0xb6, 0x50, 0x53, 0xc4, 0x22, 0x07, 0xeb, 0x15, 0x1b, 0x4d, 0x30, 0x13, 0x41, 0x2a,
0xe2, 0xa6, 0x7b, 0x01, 0x56, 0x5a, 0x0c, 0x5b, 0xac, 0x45, 0x88, 0xe7, 0x62, 0x47, 0x24, 0x75,
0xcc, 0x0a, 0x03, 0xaf, 0x93, 0x61, 0xb1, 0x16, 0x5b, 0x0c, 0xd7, 0x34, 0xf0, 0x25, 0xf5, 0xd8,
0x8b, 0xc0, 0xeb, 0xc0, 0xdf, 0x83, 0xa9, 0x06, 0xc6, 0x0e, 0x33, 0xa6, 0x32, 0x94, 0x38, 0x37,
0x65, 0xd6, 0x7f, 0x0d, 0x5c, 0x19, 0x7a, 0x65, 0x3e, 0xc6, 0xd8, 0x31, 0x15, 0x63, 0xe1, 0xaf,
0x39, 0xb0, 0x3c, 0x30, 0x25, 0x81, 0xdf, 0x03, 0x98, 0x88, 0xc5, 0xc8, 0x96, 0xaf, 0xa1, 0x46,
0x2e, 0x4b, 0x91, 0x75, 0x5a, 0xbe, 0x0d, 0x36, 0x86, 0xd7, 0x01, 0x31, 0x6b, 0x59, 0x92, 0x9a,
0x17, 0xed, 0x1e, 0x09, 0x2b, 0xfc, 0x94, 0x07, 0xf3, 0x3d, 0x45, 0x34, 0x2c, 0x83, 0x69, 0x1f,
0x53, 0xfb, 0x18, 0x05, 0x7c, 0x9c, 0xad, 0x03, 0x22, 0xd0, 0xbe, 0x03, 0x1f, 0x83, 0x59, 0x86,
0x3c, 0xcc, 0x2c, 0x3b, 0x6c, 0x89, 0x2c, 0x37, 0xcb, 0xe2, 0xea, 0x97, 0x0a, 0x89, 0xab, 0x28,
0x18, 0xdc, 0x03, 0x17, 0xe3, 0x02, 0x89, 0x50, 0x37, 0xa4, 0x22, 0xff, 0x1d, 0xf1, 0x7e, 0xbb,
0xbd, 0xa5, 0x56, 0x77, 0x21, 0x42, 0x55, 0x35, 0x08, 0x7e, 0x05, 0x66, 0x70, 0x80, 0xea, 0x1e,
0xb6, 0xbc, 0xd0, 0x46, 0x5e, 0x86, 0x53, 0x37, 0xad, 0xc6, 0x3f, 0x13, 0xc3, 0x0b, 0xff, 0xcc,
0x83, 0x99, 0x64, 0xe6, 0x0a, 0x7f, 0x14, 0x79, 0xfa, 0xc8, 0x27, 0x78, 0xe9, 0xb8, 0xb9, 0xad,
0x57, 0x29, 0x79, 0x5d, 0x92, 0xf5, 0xa1, 0xa2, 0x78, 0x49, 0xbd, 0x38, 0xcd, 0x1b, 0xde, 0x6d,
0x16, 0xda, 0x43, 0xfb, 0x20, 0x05, 0xb0, 0xff, 0x71, 0x5f, 0xae, 0xc2, 0xdc, 0xd6, 0xc3, 0x31,
0x2c, 0x3a, 0xc4, 0x27, 0xbc, 0xcf, 0x0e, 0x21, 0x34, 0x17, 0xda, 0x3d, 0x92, 0xc2, 0xef, 0xc0,
0x7c, 0x4f, 0x02, 0x0c, 0x1f, 0x82, 0x99, 0xe4, 0x1b, 0x63, 0x96, 0x20, 0xa1, 0x92, 0xe6, 0xe9,
0xc4, 0xfb, 0x62, 0xe1, 0xe7, 0x3c, 0x58, 0x1a, 0xf4, 0x36, 0x02, 0xff, 0x9c, 0x03, 0xc6, 0xb0,
0x5f, 0x51, 0xb4, 0xfb, 0xd3, 0x1e, 0xc7, 0xab, 0x1a, 0xde, 0xc5, 0xaf, 0x12, 0xec, 0x41, 0x3d,
0xe6, 0x32, 0x19, 0x24, 0x96, 0x96, 0x0c, 0xfb, 0xfd, 0x48, 0xbb, 0x3d, 0xcd, 0x92, 0x03, 0x0d,
0xef, 0xb7, 0x64, 0x60, 0x8f, 0xb9, 0x1c, 0x0c, 0x12, 0x17, 0xfe, 0x9b, 0x07, 0xb0, 0xff, 0x49,
0x07, 0xfe, 0x94, 0x03, 0x85, 0xe1, 0xbf, 0x24, 0x6a, 0x67, 0x1d, 0xa7, 0x3d, 0x45, 0x9f, 0xf1,
0xf6, 0x94, 0x03, 0x4f, 0x42, 0x94, 0x78, 0x2c, 0x4f, 0x1d, 0x66, 0xae, 0xd6, 0x07, 0x77, 0xc0,
0x2f, 0xc0, 0x39, 0x44, 0x88, 0x88, 0x3b, 0x99, 0x43, 0xc6, 0x14, 0x22, 0x64, 0xdf, 0x81, 0x1e,
0xb8, 0x10, 0xff, 0xcc, 0x2a, 0x63, 0x44, 0xfa, 0x53, 0x46, 0xc2, 0xd0, 0x32, 0x21, 0x35, 0x81,
0xec, 0x9d, 0x40, 0x24, 0x57, 0xaa, 0xce, 0x23, 0xdd, 0xdc, 0xf9, 0xed, 0x2f, 0xe5, 0x83, 0x0c,
0x0f, 0x3e, 0x70, 0x43, 0xbd, 0x86, 0x63, 0xca, 0x4a, 0xdf, 0x47, 0x9f, 0x3f, 0xc4, 0xbf, 0x4f,
0x0a, 0xa1, 0xfe, 0xfc, 0x61, 0xf7, 0x12, 0x58, 0x1b, 0xfa, 0xa3, 0xef, 0xee, 0x69, 0x0e, 0xdc,
0xb4, 0x43, 0x3f, 0xbd, 0x1a, 0xdd, 0x9d, 0xad, 0xc4, 0xb1, 0x2f, 0xe4, 0x61, 0x35, 0xf7, 0xcd,
0x53, 0x8d, 0x69, 0x86, 0xe2, 0xf6, 0x2c, 0x86, 0xb4, 0x59, 0x6a, 0xe2, 0x40, 0xfa, 0xb3, 0x74,
0x66, 0xf6, 0x88, 0x7f, 0x3c, 0xdc, 0x8f, 0xbf, 0xfe, 0x95, 0x9f, 0x7c, 0x52, 0x2e, 0xff, 0x9c,
0xbf, 0xa1, 0x92, 0xb0, 0x62, 0xd9, 0x61, 0x45, 0xf5, 0x29, 0xbe, 0x8e, 0xb6, 0x8b, 0x66, 0x34,
0xf2, 0x3f, 0xd1, 0x98, 0xd7, 0x65, 0x87, 0xbd, 0x8e, 0xc7, 0xbc, 0x3e, 0xda, 0x7e, 0x1d, 0x8f,
0xf9, 0x25, 0x7f, 0x53, 0x75, 0xec, 0xec, 0x94, 0x1d, 0xb6, 0xb3, 0x13, 0x8f, 0xda, 0xd9, 0x39,
0xda, 0xde, 0xd9, 0x89, 0xc7, 0xd5, 0xcf, 0x49, 0x63, 0xb7, 0xff, 0x17, 0x00, 0x00, 0xff, 0xff,
0xc0, 0x5f, 0x14, 0xd6, 0x9d, 0x21, 0x00, 0x00,
}
|