about summary refs log tree commit diff
path: root/universe/ac_types/attributes.pb
blob: 6b893647c7ba760964b2a916dc5a2c549ddb67b4 (plain) (blame)
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
configs {
  # System Attribute - Category
  id: "^^1"
  type: STRING
  access_type: READ_WRITE
}
configs {
  # System Attribute - Product
  id: "^^11"
  type: STRING
  access_type: READ
}
configs {
  # System Attribute - Customer Email
  id: "^^3"
  type: STRING
  access_type: READ
}
configs {
  # System Attribute - Adwords Customer ID
  id: "^^30"
  type: STRING
  access_type: READ
}
configs {
  # System Attribute - Customer Gaia ID
  id: "^^4"
  type: INT
  access_type: READ
}
configs {
  # System Attribute - Customer Name
  id: "^^5"
  type: STRING
  access_type: READ
}
configs {
  # System Attribute - Locale
  id: "^^9"
  type: STRING
  access_type: READ
}
configs {
  # System Attribute - Case Source
  id: "^1006"
  type: STRING
  access_type: READ
}
configs {
  # AR.Claim.KnowledgeTestClaimId
  id: "^106464"
  type: STRING
  access_type: READ
}
configs {
  # AR.Claim.IssueType
  id: "^106466"
  type: ENUM
  access_type: READ
}
configs {
  # AR.Claim.StrongAuthPhone
  id: "^106474"
  type: STRING
  access_type: READ
}
configs {
  # AR.Claim.IsStopMessageReceived
  id: "^106482"
  type: BOOL
  access_type: READ
}
configs {
  # Atlas.CustomerId
  id: "^1421"
  type: STRING
  access_type: READ
}
configs {
  # Form.form-id
  id: "^4297"
  type: STRING
  access_type: READ
}
configs {
  # Form.Ar_descr_textbox
  id: "^6664"
  type: STRING
  access_type: READ
}
configs {
  # AR.ART.LastDecisionRecommended
  id: "^106918"
  type: ENUM
  access_type: WRITE
}
configs {
  # AR.ART.LastDecisionTaken
  id: "^106919"
  type: ENUM
  access_type: WRITE
}
configs {
  # AR.ART.LastDecisionTime
  id: "^106920"
  type: STRING
  access_type: WRITE
}
configs {
  # AR.ART.LastDecisionType
  id: "^106921"
  type: ENUM
  access_type: WRITE
}
configs {
  # System Attribute - Resolution ID
  id: "^22020"
  type: STRING
  access_type: WRITE
}
configs {
  # b/134163005 - frd.quality_pre_check_state.core
  id: "^83347"
  type: STRING
  access_type: READ_WRITE
}
configs {
  # b/134168536 - PRIORITY
  id: "^^10"
  type: INT
  access_type: READ
}
configs {
  # b/134169885 - STO_InternalCategory
  id: "^3618"
  type: STRING
  access_type: READ_WRITE
}
configs {
  # b/134408264 - neo.notification_requested
  id: "^84074"
  type: STRING
  access_type: READ_WRITE
}
configs {
  # b/135613797 - Form.media_plan_ID
  id: "^75926"
  type: STRING
  access_type: READ
}
configs {
  # b/135613797 - Form.help_needed
  id: "^80735"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.company_id
  id: "^14773"
  type: INT
  access_type: READ
}
configs {
  # b/135614853 - sales_task.TeamName
  id: "^16367"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.VerticalName
  id: "^16368"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.RegionName
  id: "^16369"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.Sector
  id: "^16372"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.SubSector
  id: "^16373"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.parent_company_id
  id: "^25555"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.service_channel
  id: "^25557"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.company_name
  id: "^26743"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.global_parent_company_id
  id: "^29339"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.global_parent_company_name
  id: "^29340"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.parent_company_name
  id: "^29341"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - CaseCreator.Email
  id: "^5709"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.product
  id: "^68613"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.request_type
  id: "^68616"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.workdriver
  id: "^68617"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.campaign_type
  id: "^68621"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.market
  id: "^69794"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.interaction_type
  id: "^69795"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - sales_task.chutney_key
  id: "^70302"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - frd.case_source.core
  id: "^76697"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - frd.google_ads_internal_customer_id.target
  id: "^77629"
  type: INT
  access_type: READ
}
configs {
  # b/135614853 - frd.google_ads_internal_customer_id.target_candidate
  id: "^77634"
  type: INT
  access_type: READ
}
configs {
  # b/135614853 - neo.Sales_Region
  id: "^81664"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.source_mechanism
  id: "^82204"
  type: STRING
  access_type: READ
}
configs {
  # b/135614853 - neo.vertical
  id: "^82589"
  type: STRING
  access_type: READ
}
configs {
  # b/135943348 - IS_CONSULT
  id: "^1224"
  type: BOOL
  access_type: READ
}
configs {
  # b/135943691 - Form.ic_sto_priority
  id: "^6078"
  type: STRING
  access_type: READ
}
configs {
  # b/135943174 - neo.program
  id: "^69798"
  type: STRING
  access_type: READ
}
configs {
  # b/135942978 - Form.what_is_your_question_about
  id: "^14511"
  type: STRING
  access_type: READ
}
configs {
  # b/135942692 - sales_task.gt_priority
  id: "^25484"
  type: STRING
  access_type: READ
}
configs {
  # b/138591197 - Form.pii_status
  id: "^30810"
  type: STRING
  access_type: READ
}
configs {
  # b/138591197 - Form.pii_status - STAGING ATTRIBUTE
  id: "^122997"
  type: STRING
  access_type: READ
}
configs {
  # b/138590939 - Form.pii_AWID
  id: "^30811"
  type: STRING
  access_type: READ
}
configs {
  # b/138590939 - Form.pii_AWID - STAGING ATTRIBUTE
  id: "^122998"
  type: STRING
  access_type: READ
}
configs {
  # b/138590649 - Form.customerId
  id: "^1658"
  type: STRING
  access_type: READ
}
configs {
  # b/138592092 - Form.form
  id: "^3664"
  type: STRING
  access_type: READ
}
configs {
  # b/138592092 - Form.form - STAGING ATTRIBUTE
  id: "^113826"
  type: STRING
  access_type: READ
}
configs {
  # b/138591447 - Form.pubid
  id: "^3693"
  type: STRING
  access_type: READ
}
configs {
  # b/138591447 - Form.pubid - STAGING ATTRIBUTE
  id: "^102721"
  type: STRING
  access_type: READ
}
configs {
  # b/138590817 - Form.status
  id: "^7502"
  type: STRING
  access_type: READ
}
configs {
  # b/138590817 - Form.status - STAGING ATTRIBUTE
  id: "^104111"
  type: STRING
  access_type: READ
}
configs {
  # b/138811198 - sales_task.Country
  id: "^16371"
  type: STRING
  access_type: READ
}
configs {
  # b/138811198 - sales_task.country_code
  id: "^25556"
  type: STRING
  access_type: READ
}
configs {
  # b/138811198 - sales_task.client_business_objective
  id: "^85372"
  type: STRING
  access_type: READ
}
configs {
  # b/138811198 - sales_task.timeline_consideration
  id: "^85375"
  type: STRING
  access_type: READ
}
configs {
  # b/138843621 - Form.bse_priority_level
  id: "^71223"
  type: STRING
  access_type: READ
}
configs {
  # b/139361297 - Form.pub_id
  id: "^4302"
  type: STRING
  access_type: READ
}
configs {
  # b/139361297 - Form.admob_pubid
  id: "^8472"
  type: STRING
  access_type: READ
}
configs {
  # b/139361297 - Form.upload_document_id
  id: "^7067"
  type: STRING
  access_type: READ
}
configs {
  # b/139761352 - sales_task.assigned_to
  id: "^73218"
  type: STRING
  access_type: READ
}
configs {
  # b/140811258 - neo.source_context
  id: "^83722"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.account_assigned_to_a_PTL
  id: "^84587"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.account_id
  id: "^2259"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Additional_Advertiser_ID_s
  id: "^84575"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.additional_comments
  id: "^3501"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.advertiser_name
  id: "^4171"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.agency_id
  id: "^76244"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Authorized_Buyers_customer_ID
  id: "^87627"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.company_id
  id: "^3416"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.company_name
  id: "^3239"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Country_of_Support
  id: "^84581"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Customer_Contact_Email
  id: "^84577"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.customer_contact_name
  id: "^7553"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Greentea_ID
  id: "^86872"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.impact
  id: "^68442"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.impact_type
  id: "^16645"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Link_Partner_s
  id: "^84589"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.network_id
  id: "^2939"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Notification_Email
  id: "^84582"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.partner_agency_name
  id: "^86962"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.partner_id
  id: "^2342"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Primary_Advertiser_ID_1
  id: "^86874"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Primary_Advertiser_ID
  id: "^84591"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Primary_Product
  id: "^84588"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Request_Type
  id: "^4833"
  type: STRING
  access_type: READ
}
configs {
  # b/141865219 - Form.Request_Sub_Type
  id: "^84831"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Rquest_Sub_Type
  id: "^84593"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.sector
  id: "^18760"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.sub_sector
  id: "^87768"
  type: STRING
  access_type: READ
}
configs {
  # b/141027066 - Form.Work_doesnt_affect_Advertiser
  id: "^84565"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.support_need
  id: "^60520"
  type: ENUM
  access_type: READ
}
configs {
  # b/142882516 - sales_task.campaign_name
  id: "^25128"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.net_campaign_budget
  id: "^25118"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.currency
  id: "^25115"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.advertiser_market
  id: "^81059"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.advertiser_market_cs
  id: "^81091"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.country_cs
  id: "^81090"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.campaign_start_date
  id: "^25108"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.campaign_end_date
  id: "^25114"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.potential_date
  id: "^80985"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.date_flexible
  id: "^80991"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.agency
  id: "^25116"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.sales_poc
  id: "^61764"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.external_poc
  id: "^62583"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.dvip_status
  id: "^80988"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.campaign_supported
  id: "^81060"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.ad_platform
  id: "^80983"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.video_format
  id: "^80992"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.launched_before
  id: "^80959"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - sales_task.request_details
  id: "^25126"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - neo.component
  id: "^68623"
  type: STRING
  access_type: READ
}
configs {
  # b/142882516 - neoenum.gps_project_type
  id: "^88941"
  type: STRING
  access_type: READ
}
configs {
  # b/143390406 - neoenum.youtube_program_pitched
  id: "^88894"
  type: STRING
  access_type: READ_WRITE
}
configs {
  # b/143892899 - neo.organization
  id: "^69793"
  type: STRING
  access_type: READ
}
configs {
  # b/145022355 - LR_isFlagged
  id: "^6736"
  type: BOOL
  access_type: READ
}
configs {
  # b/145022355 - legal_AbuseCategory
  id: "^3614"
  type: ENUM
  access_type: READ
}
configs {
  # b/145022355 - legal_HiddenProduct
  id: "^3615"
  type: ENUM
  access_type: READ
}
configs {
  # b/145022355 - CountryIsoAlpha2
  id: "^3497"
  type: ENUM
  access_type: READ
}
configs {
  # b/145022355 - legal_ChillingId
  id: "^3616"
  type: STRING
  access_type: READ
}
configs {
  # b/145022355 - LegalRemovals_SESTA
  id: "^71537"
  type: BOOL
  access_type: READ
}
configs {
  # b/145707965 - sales_task.accounts_field2
  id: "^80051"
  type: STRING
  access_type: READ
}
configs {
  # b/145707965 - sales_task.cid_rollup
  id: "^80052"
  type: STRING
  access_type: READ
}
configs {
  # b/145707965 - sales_task.proposed_company_id
  id: "^62779"
  type: STRING
  access_type: READ
}
configs {
  # b/146005429 - Form.geolocation
  id: "^3328"
  type: STRING
  access_type: READ
}
configs {
  # b/146066105 - Form.url_box3
  id: "^5653"
  type: STRING
  access_type: READ
}
configs {
  # b/146066105 - Form.full_name
  id: "^2981"
  type: STRING
  access_type: READ
}
configs {
  # b/146066105 - Form.signature
  id: "^3483"
  type: STRING
  access_type: READ
}
configs {
  # b/146060287 - Form.publisher_code
  id: "^86622"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - neoenum.consult_type
  id: "^88149"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - neoenum.program
  id: "^87379"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.ad_language
  id: "^3906"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.summary_of_issue
  id: "^5305"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Atlas.AbuseTagIds
  id: "^2356"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.website_req
  id: "^1677"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.who_pays
  id: "^14657"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.sample_keywords
  id: "^1881"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.billing_address_street
  id: "^1880"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.billing_address_town
  id: "^1879"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.billing_address_zip
  id: "^1885"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.billing_country_req
  id: "^1886"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.business_desc
  id: "^14660"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.owner_or_emp
  id: "^14661"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - Form.payment_option
  id: "^1882"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - ChatForm.phone_number
  id: "^30248"
  type: STRING
  access_type: READ
}
configs {
  # b/146445306 - pool
  id: "^^35"
  type: STRING
  access_type: READ
}
configs {
  # b/146649910 - neoenum.product
  id: "^87422"
  type: STRING
  access_type: READ
}
configs {
  # b/146347546 - sales_task.requested_quarter
  id: "^77809"
  type: STRING
  access_type: READ
}
configs {
  # b/146347546 - sales_task.proposed_company_name
  id: "^62778"
  type: STRING
  access_type: READ
}
configs {
  # b/146347546 - sales_task.company_name_pdc_copy
  id: "^80083"
  type: STRING
  access_type: READ
}
configs {
  # b/146347546 - sales_task.company_currently_exists
  id: "^75285"
  type: STRING
  access_type: READ
}
configs {
  # b/146347546 - sales_task.parent_or_division
  id: "^76645"
  type: STRING
  access_type: READ
}
configs {
  # b/146347546 - sales_task.proposed_company_website
  id: "^76644"
  type: STRING
  access_type: READ
}