This repository has been archived by the owner on Oct 11, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 6
/
Fields.js
126 lines (113 loc) · 4.32 KB
/
Fields.js
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
/***************************************************************************
*
* Copyright 2020 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* https://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*
* Note that these code samples being shared are not official Google
* products and are not formally supported.
*
***************************************************************************/
var fields = {
// Common Fields
'archived': 'Archived',
'activeStatus': 'Active Status',
// Advertiser
'advertiserId': 'Advertiser ID',
'advertiserName': 'Advertiser Name',
// Site
'siteId': 'Site ID',
'siteName': 'Site Name',
// Landing Page
'landingPageId': 'Landing Page ID',
'landingPageName': 'Landing Page Name',
'landingPageUrl': 'Landing Page URL',
// Campaign
'campaignId': 'Campaign ID',
'campaignName': 'Campaign Name',
'campaignStartDate': 'Campaign Start Date',
'campaignEndDate': 'Campaign End Date',
'billingInvoiceCode': 'Billing Invoice Code',
// Event Tag
'eventTagId': 'Event Tag ID',
'eventTagName': 'Event Tag Name',
'eventTagStatus': 'Event Tag Status',
'enableByDefault': 'Enable By Default',
'eventTagType': 'Event Tag Type',
'eventTagUrl': 'Event Tag URL',
'enabled': 'Enabled',
// Placement Group
'placementGroupId': 'Placement Group ID',
'placementGroupName': 'Placement Group Name',
'placementGroupType': 'Placement Group Type',
'placementGroupStartDate': 'Placement Group Start Date',
'placementGroupEndDate': 'Placement Group End Date',
'placementGroupPricingType': 'Pricing Type',
// Placement
'placementId': 'Placement ID',
'placementName': 'Placement Name',
'activeView': 'Active View and Verification',
'adBlocking': 'Ad Blocking',
'placementStartDate': 'Placement Start Date',
'placementEndDate': 'Placement End Date',
'placementType': 'Type',
'placementPricingScheduleCostStructure': 'Pricing Schedule Cost Structure',
'pricingScheduleTestingStart': 'Pricing Schedule Testing Starts',
'placementSkippable': 'Skippable',
'placementSkipOffsetSeconds': 'Skip Offset Seconds',
'placementSkipOffsetPercentage': 'Skip Offset Percentage',
'placementProgressOffsetSeconds': 'Progress Offset Seconds',
'placementProgressOffsetPercentage': 'Progress Offset Percentage',
'placementAdditionalKeyValues': 'Additional Key Values',
'placementAssetSize': 'Asset Size',
'placementStatusUnknown': 'PLACEMENT_STATUS_UNKNOWN',
'placementStatusActive': 'PLACEMENT_STATUS_ACTIVE',
'placementStatusInactive': 'PLACEMENT_STATUS_INACTIVE',
'placementStatusArchived': 'PLACEMENT_STATUS_ARCHIVED',
'placementStatusPermanentlyArchived': 'PLACEMENT_STATUS_PERMANENTLY_ARCHIVED',
// Placement Pricing Schedule
'pricingPeriodStart': 'Pricing Period Start Date',
'pricingPeriodEnd': 'Pricing Period End Date',
'pricingPeriodRate': 'Pricing Period Rate',
'pricingPeriodUnits': 'Pricing Period Units',
// Creative
'creativeId': 'Creative ID',
'creativeName': 'Creative Name',
'creativeType': 'Creative Type',
'thirdPartyUrlType': '3P URL Type',
'thirdPartyUrl': '3P URL',
'creativeActive': 'Creative Active',
'redirectUrl': 'Redirect URL',
'creativeSize': 'Creative Size',
'htmlCode': 'HTML',
// Ad
'creativeRotation': 'Creative Rotation',
'creativeRotationWeight': 'Creative Rotation Weight',
'creativeRotationSequence': 'Creative Rotation Sequence',
'adPriority': 'Ad Priority',
'adId': 'Ad ID',
'adName': 'Ad Name',
'adStartDate': 'Ad Start Date',
'adEndDate': 'Ad End Date',
'adActive': 'Ad Active',
'adArchived': 'Ad Archived',
'adCreativeAssignmentStartDate': 'Start Date',
'adCreativeAssignmentEndDate': 'End Date',
'hardCutoff': 'Hard Cutoff',
'adType': 'Ad Type',
'customClickThroughUrl': 'Custom URL',
// Dynamic Targeting Keys
'dynamicTargetingKeyName': 'Key Name',
'dynamicTargetingKeyObjectType': 'Object Type',
'dynamicTargetingKeyObjectID': 'Object ID',
};