@truenorth-it/dataverse-client 1.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +405 -0
- package/package.json +73 -0
- package/sdk/dist/cli.d.ts +10 -0
- package/sdk/dist/cli.d.ts.map +1 -0
- package/sdk/dist/cli.js +119 -0
- package/sdk/dist/cli.js.map +1 -0
- package/sdk/dist/client.d.ts +42 -0
- package/sdk/dist/client.d.ts.map +1 -0
- package/sdk/dist/client.js +116 -0
- package/sdk/dist/client.js.map +1 -0
- package/sdk/dist/codegen.d.ts +41 -0
- package/sdk/dist/codegen.d.ts.map +1 -0
- package/sdk/dist/codegen.js +150 -0
- package/sdk/dist/codegen.js.map +1 -0
- package/sdk/dist/index.d.ts +6 -0
- package/sdk/dist/index.d.ts.map +1 -0
- package/sdk/dist/index.js +4 -0
- package/sdk/dist/index.js.map +1 -0
- package/sdk/dist/tables.generated.d.ts +1606 -0
- package/sdk/dist/tables.generated.d.ts.map +1 -0
- package/sdk/dist/tables.generated.js +7 -0
- package/sdk/dist/tables.generated.js.map +1 -0
- package/sdk/dist/types.d.ts +124 -0
- package/sdk/dist/types.d.ts.map +1 -0
- package/sdk/dist/types.js +2 -0
- package/sdk/dist/types.js.map +1 -0
|
@@ -0,0 +1,1606 @@
|
|
|
1
|
+
/** Fields for the `incident` table */
|
|
2
|
+
export interface Incident {
|
|
3
|
+
/** Unique case identifier */
|
|
4
|
+
incidentid?: string;
|
|
5
|
+
/** Case number */
|
|
6
|
+
ticketnumber?: string;
|
|
7
|
+
/** Case title */
|
|
8
|
+
title?: string;
|
|
9
|
+
/** Case description */
|
|
10
|
+
description?: string;
|
|
11
|
+
/** Case status */
|
|
12
|
+
statecode?: number;
|
|
13
|
+
/** Display label for statecode */
|
|
14
|
+
statecode_label?: string;
|
|
15
|
+
/** Status reason */
|
|
16
|
+
statuscode?: number;
|
|
17
|
+
/** Display label for statuscode */
|
|
18
|
+
statuscode_label?: string;
|
|
19
|
+
/** Priority */
|
|
20
|
+
prioritycode?: number;
|
|
21
|
+
/** Display label for prioritycode */
|
|
22
|
+
prioritycode_label?: string;
|
|
23
|
+
/** Case type */
|
|
24
|
+
casetypecode?: number;
|
|
25
|
+
/** Display label for casetypecode */
|
|
26
|
+
casetypecode_label?: string;
|
|
27
|
+
/** Case origin */
|
|
28
|
+
caseorigincode?: number;
|
|
29
|
+
/** Display label for caseorigincode */
|
|
30
|
+
caseorigincode_label?: string;
|
|
31
|
+
/** Date created */
|
|
32
|
+
createdon?: string;
|
|
33
|
+
/** Date last modified */
|
|
34
|
+
modifiedon?: string;
|
|
35
|
+
/** Customer (contact or account) */
|
|
36
|
+
customerid?: string;
|
|
37
|
+
/** GUID of the related record */
|
|
38
|
+
_customerid_value?: string;
|
|
39
|
+
/** Primary contact */
|
|
40
|
+
primarycontactid?: string;
|
|
41
|
+
/** GUID of the related contact */
|
|
42
|
+
_primarycontactid_value?: string;
|
|
43
|
+
/** Record owner */
|
|
44
|
+
ownerid?: string;
|
|
45
|
+
/** GUID of the related record */
|
|
46
|
+
_ownerid_value?: string;
|
|
47
|
+
/** Unique identifier of the account with which the case is associated. */
|
|
48
|
+
accountid?: string;
|
|
49
|
+
/** GUID of the related account */
|
|
50
|
+
_accountid_value?: string;
|
|
51
|
+
/** This attribute is used for Sample Service Business Processes. */
|
|
52
|
+
activitiescomplete?: boolean;
|
|
53
|
+
/** Type the number of service units that were actually required to resolve the case. */
|
|
54
|
+
actualserviceunits?: number;
|
|
55
|
+
/** Type the number of service units that were billed to the customer for the case. */
|
|
56
|
+
billedserviceunits?: number;
|
|
57
|
+
/** Details whether the profile is blocked or not. */
|
|
58
|
+
blockedprofile?: boolean;
|
|
59
|
+
/** Shows the duration for which the Case has been active for Active and Resolved Cases. */
|
|
60
|
+
caseage?: string;
|
|
61
|
+
/** This attribute is used for Sample Service Business Processes. */
|
|
62
|
+
checkemail?: boolean;
|
|
63
|
+
/** Unique identifier of the contact associated with the case. */
|
|
64
|
+
contactid?: string;
|
|
65
|
+
/** GUID of the related contact */
|
|
66
|
+
_contactid_value?: string;
|
|
67
|
+
/** Choose the contract line that the case should be logged under to make sure the customer is charged correctly. */
|
|
68
|
+
contractdetailid?: string;
|
|
69
|
+
/** GUID of the related record */
|
|
70
|
+
_contractdetailid_value?: string;
|
|
71
|
+
/** Choose the service contract that the case should be logged under to make sure the customer is eligible for support services. */
|
|
72
|
+
contractid?: string;
|
|
73
|
+
/** GUID of the related record */
|
|
74
|
+
_contractid_value?: string;
|
|
75
|
+
/** Select the service level for the case to make sure the case is handled correctly. */
|
|
76
|
+
contractservicelevelcode?: number;
|
|
77
|
+
/** Display label for contractservicelevelcode */
|
|
78
|
+
contractservicelevelcode_label?: string;
|
|
79
|
+
/** lk_externalparty_incident_createdby */
|
|
80
|
+
createdbyexternalparty?: string;
|
|
81
|
+
/** GUID of the related record */
|
|
82
|
+
_createdbyexternalparty_value?: string;
|
|
83
|
+
createdbyname?: string;
|
|
84
|
+
createdbyyominame?: string;
|
|
85
|
+
createdonbehalfbyname?: string;
|
|
86
|
+
createdonbehalfbyyominame?: string;
|
|
87
|
+
/** Tells whether customer service representative has contacted the customer or not. */
|
|
88
|
+
customercontacted?: boolean;
|
|
89
|
+
/** Customer Type */
|
|
90
|
+
customeridtype?: string;
|
|
91
|
+
/** Select the customer's level of satisfaction with the handling and resolution of the case. */
|
|
92
|
+
customersatisfactioncode?: number;
|
|
93
|
+
/** Display label for customersatisfactioncode */
|
|
94
|
+
customersatisfactioncode_label?: string;
|
|
95
|
+
/** Shows the date time when the Case was resolved. */
|
|
96
|
+
deactivatedon?: string;
|
|
97
|
+
/** Shows whether terms of the associated entitlement should be decremented or not. */
|
|
98
|
+
decremententitlementterm?: boolean;
|
|
99
|
+
/** The primary email address for the entity. */
|
|
100
|
+
emailaddress?: string;
|
|
101
|
+
/** Choose the entitlement that is applicable for the case. */
|
|
102
|
+
entitlementid?: string;
|
|
103
|
+
/** GUID of the related record */
|
|
104
|
+
_entitlementid_value?: string;
|
|
105
|
+
/** The default image for the entity. */
|
|
106
|
+
entityimage?: string;
|
|
107
|
+
entityimage_timestamp?: number;
|
|
108
|
+
entityimage_url?: string;
|
|
109
|
+
/** For internal use only. */
|
|
110
|
+
entityimageid?: string;
|
|
111
|
+
/** Indicates the date and time when the case was escalated. */
|
|
112
|
+
escalatedon?: string;
|
|
113
|
+
/** Select an existing case for the customer that has been populated. For internal use only. */
|
|
114
|
+
existingcase?: string;
|
|
115
|
+
/** GUID of the related incident */
|
|
116
|
+
_existingcase_value?: string;
|
|
117
|
+
/** For internal use only. */
|
|
118
|
+
firstresponsebykpiid?: string;
|
|
119
|
+
/** GUID of the related record */
|
|
120
|
+
_firstresponsebykpiid_value?: string;
|
|
121
|
+
/** Indicates if the first response has been sent. */
|
|
122
|
+
firstresponsesent?: boolean;
|
|
123
|
+
/** Shows the status of the initial response time for the case according to the terms of the SLA. */
|
|
124
|
+
firstresponseslastatus?: number;
|
|
125
|
+
/** Display label for firstresponseslastatus */
|
|
126
|
+
firstresponseslastatus_label?: string;
|
|
127
|
+
/** Enter the date by which a customer service representative has to follow up with the customer on this case. */
|
|
128
|
+
followupby?: string;
|
|
129
|
+
/** This attribute is used for Sample Service Business Processes. */
|
|
130
|
+
followuptaskcreated?: boolean;
|
|
131
|
+
/** Select the current stage of the service process for the case to assist service team members when they review or transfer a case. */
|
|
132
|
+
incidentstagecode?: number;
|
|
133
|
+
/** Display label for incidentstagecode */
|
|
134
|
+
incidentstagecode_label?: string;
|
|
135
|
+
/** Will contain the Influencer score coming from NetBreeze. */
|
|
136
|
+
influencescore?: number;
|
|
137
|
+
/** For system use only. */
|
|
138
|
+
isdecrementing?: boolean;
|
|
139
|
+
/** Indicates if the case has been escalated. */
|
|
140
|
+
isescalated?: boolean;
|
|
141
|
+
/** Choose the article that contains additional information or a resolution for the case, for reference during research or follow up with the customer. */
|
|
142
|
+
kbarticleid?: string;
|
|
143
|
+
/** GUID of the related record */
|
|
144
|
+
_kbarticleid_value?: string;
|
|
145
|
+
/** Shows the latest activity associated with the Case and the action performed on that activity. */
|
|
146
|
+
lastinteraction?: string;
|
|
147
|
+
/** Contains the date time stamp of the last on hold time. */
|
|
148
|
+
lastonholdtime?: string;
|
|
149
|
+
/** Choose the primary case the current case was merged into. */
|
|
150
|
+
masterid?: string;
|
|
151
|
+
/** GUID of the related incident */
|
|
152
|
+
_masterid_value?: string;
|
|
153
|
+
/** Tells whether the incident has been merged with another incident. */
|
|
154
|
+
merged?: boolean;
|
|
155
|
+
/** Shows whether the post originated as a public or private message. */
|
|
156
|
+
messagetypecode?: number;
|
|
157
|
+
/** Display label for messagetypecode */
|
|
158
|
+
messagetypecode_label?: string;
|
|
159
|
+
/** lk_externalparty_incident_modifiedby */
|
|
160
|
+
modifiedbyexternalparty?: string;
|
|
161
|
+
/** GUID of the related record */
|
|
162
|
+
_modifiedbyexternalparty_value?: string;
|
|
163
|
+
modifiedbyname?: string;
|
|
164
|
+
modifiedbyyominame?: string;
|
|
165
|
+
modifiedonbehalfbyname?: string;
|
|
166
|
+
modifiedonbehalfbyyominame?: string;
|
|
167
|
+
/** Status of AI Agent for the given record. */
|
|
168
|
+
msdyn_aiagentstatus?: string;
|
|
169
|
+
/** GUID of the related record */
|
|
170
|
+
_msdyn_aiagentstatus_value?: string;
|
|
171
|
+
msdyn_casesentiment?: number;
|
|
172
|
+
/** Display label for msdyn_casesentiment */
|
|
173
|
+
msdyn_casesentiment_label?: string;
|
|
174
|
+
/** Survey invite url for customer feedback. */
|
|
175
|
+
msdyn_casesurveyinviteurl?: string;
|
|
176
|
+
msdyn_copilotengaged?: boolean;
|
|
177
|
+
/** The iot alert that initiated this case */
|
|
178
|
+
msdyn_iotalert?: string;
|
|
179
|
+
/** GUID of the related record */
|
|
180
|
+
_msdyn_iotalert_value?: string;
|
|
181
|
+
/** Entity Attachments Id before the case record is created */
|
|
182
|
+
msdyn_precreateattachmentsid?: string;
|
|
183
|
+
/** Notes Id before the case record is created */
|
|
184
|
+
msdyn_precreatenotesid?: string;
|
|
185
|
+
/** Shows the unresolved SLA KPI associated with the Case with the earliest expiry time. */
|
|
186
|
+
nextsla?: string;
|
|
187
|
+
/** Number of child incidents associated with the incident. */
|
|
188
|
+
numberofchildincidents?: number;
|
|
189
|
+
/** Shows the duration in minutes for which the case was on hold. */
|
|
190
|
+
onholdtime?: number;
|
|
191
|
+
owneridtype?: string;
|
|
192
|
+
owningbusinessunitname?: string;
|
|
193
|
+
/** Choose the parent case for a case. */
|
|
194
|
+
parentcaseid?: string;
|
|
195
|
+
/** GUID of the related incident */
|
|
196
|
+
_parentcaseid_value?: string;
|
|
197
|
+
/** Choose the product associated with the case to identify warranty, service, or other product issues and be able to report the number of incidents for each product. */
|
|
198
|
+
productid?: string;
|
|
199
|
+
/** GUID of the related record */
|
|
200
|
+
_productid_value?: string;
|
|
201
|
+
/** Type the serial number of the product that is associated with this case, so that the number of cases per product can be reported. */
|
|
202
|
+
productserialnumber?: string;
|
|
203
|
+
/** Enter the date by when the case must be resolved. */
|
|
204
|
+
resolveby?: string;
|
|
205
|
+
/** For internal use only. */
|
|
206
|
+
resolvebykpiid?: string;
|
|
207
|
+
/** GUID of the related record */
|
|
208
|
+
_resolvebykpiid_value?: string;
|
|
209
|
+
/** Shows the status of the resolution time for the case according to the terms of the SLA. */
|
|
210
|
+
resolvebyslastatus?: number;
|
|
211
|
+
/** Display label for resolvebyslastatus */
|
|
212
|
+
resolvebyslastatus_label?: string;
|
|
213
|
+
/** For internal use only. */
|
|
214
|
+
responseby?: string;
|
|
215
|
+
/** Choose an additional customer contact who can also help resolve the case. */
|
|
216
|
+
responsiblecontactid?: string;
|
|
217
|
+
/** GUID of the related contact */
|
|
218
|
+
_responsiblecontactid_value?: string;
|
|
219
|
+
/** Tells whether the incident has been routed to queue or not. */
|
|
220
|
+
routecase?: boolean;
|
|
221
|
+
/** Value derived after assessing words commonly associated with a negative, neutral, or positive sentiment that occurs in a social post. Sentiment information can also be reported as numeric values. */
|
|
222
|
+
sentimentvalue?: number;
|
|
223
|
+
/** Select the stage, in the case resolution process, that the case is in. */
|
|
224
|
+
servicestage?: number;
|
|
225
|
+
/** Display label for servicestage */
|
|
226
|
+
servicestage_label?: string;
|
|
227
|
+
/** Select the severity of this case to indicate the incident's impact on the customer's business. */
|
|
228
|
+
severitycode?: number;
|
|
229
|
+
/** Display label for severitycode */
|
|
230
|
+
severitycode_label?: string;
|
|
231
|
+
/** Choose the service level agreement (SLA) that you want to apply to the case record. */
|
|
232
|
+
slaid?: string;
|
|
233
|
+
/** GUID of the related record */
|
|
234
|
+
_slaid_value?: string;
|
|
235
|
+
/** Last SLA that was applied to this case. This field is for internal use only. */
|
|
236
|
+
slainvokedid?: string;
|
|
237
|
+
/** GUID of the related record */
|
|
238
|
+
_slainvokedid_value?: string;
|
|
239
|
+
slaname?: string;
|
|
240
|
+
/** Unique identifier of the social profile with which the case is associated. */
|
|
241
|
+
socialprofileid?: string;
|
|
242
|
+
/** GUID of the related record */
|
|
243
|
+
_socialprofileid_value?: string;
|
|
244
|
+
/** Choose the subject for the case, such as catalog request or product complaint, so customer service managers can identify frequent requests or problem areas. Administrators can configure subjects under Business Management in the Settings area. */
|
|
245
|
+
subjectid?: string;
|
|
246
|
+
/** GUID of the related record */
|
|
247
|
+
_subjectid_value?: string;
|
|
248
|
+
/** Rich test description field */
|
|
249
|
+
tn_descriptionrich?: string;
|
|
250
|
+
tn_devopsworkitem?: string;
|
|
251
|
+
tn_elapsedtime?: string;
|
|
252
|
+
tn_externalreference?: string;
|
|
253
|
+
/** Calculated field used as a hack for interactive dashboard */
|
|
254
|
+
tn_now?: string;
|
|
255
|
+
tn_project?: string;
|
|
256
|
+
/** GUID of the related msdyn_project */
|
|
257
|
+
_tn_project_value?: string;
|
|
258
|
+
/** Brief summary of the status of the Case. Used for reporting back to customer. */
|
|
259
|
+
tn_statussummary?: string;
|
|
260
|
+
tn_teamsconversationid?: string;
|
|
261
|
+
tn_teamsmessageid?: string;
|
|
262
|
+
}
|
|
263
|
+
/** Fields for the `msdyn_project` table */
|
|
264
|
+
export interface MsdynProject {
|
|
265
|
+
/** Unique project identifier */
|
|
266
|
+
msdyn_projectid?: string;
|
|
267
|
+
/** Project name */
|
|
268
|
+
msdyn_subject?: string;
|
|
269
|
+
/** Project description */
|
|
270
|
+
msdyn_description?: string;
|
|
271
|
+
/** Customer account */
|
|
272
|
+
msdyn_customer?: string;
|
|
273
|
+
/** GUID of the related account */
|
|
274
|
+
_msdyn_customer_value?: string;
|
|
275
|
+
/** Project manager */
|
|
276
|
+
msdyn_projectmanager?: string;
|
|
277
|
+
/** GUID of the related contact */
|
|
278
|
+
_msdyn_projectmanager_value?: string;
|
|
279
|
+
/** Scheduled start date */
|
|
280
|
+
msdyn_scheduledstart?: string;
|
|
281
|
+
/** Scheduled finish date */
|
|
282
|
+
msdyn_finish?: string;
|
|
283
|
+
/** Actual start date */
|
|
284
|
+
msdyn_actualstart?: string;
|
|
285
|
+
/** Actual end date */
|
|
286
|
+
msdyn_actualend?: string;
|
|
287
|
+
/** Progress percentage */
|
|
288
|
+
msdyn_progress?: number;
|
|
289
|
+
/** Duration in days */
|
|
290
|
+
msdyn_duration?: number;
|
|
291
|
+
/** Total planned effort (hours) */
|
|
292
|
+
msdyn_effort?: number;
|
|
293
|
+
/** Effort completed (hours) */
|
|
294
|
+
msdyn_effortcompleted?: number;
|
|
295
|
+
/** Effort remaining (hours) */
|
|
296
|
+
msdyn_effortremaining?: number;
|
|
297
|
+
/** Total planned cost */
|
|
298
|
+
msdyn_totalplannedcost?: number;
|
|
299
|
+
/** Total actual cost */
|
|
300
|
+
msdyn_totalactualcost?: number;
|
|
301
|
+
/** Overall project status */
|
|
302
|
+
msdyn_overallprojectstatus?: number;
|
|
303
|
+
/** Display label for msdyn_overallprojectstatus */
|
|
304
|
+
msdyn_overallprojectstatus_label?: string;
|
|
305
|
+
/** State */
|
|
306
|
+
statecode?: number;
|
|
307
|
+
/** Display label for statecode */
|
|
308
|
+
statecode_label?: string;
|
|
309
|
+
/** Status reason */
|
|
310
|
+
statuscode?: number;
|
|
311
|
+
/** Display label for statuscode */
|
|
312
|
+
statuscode_label?: string;
|
|
313
|
+
/** Project type (custom) */
|
|
314
|
+
tn_projecttype?: number;
|
|
315
|
+
/** Display label for tn_projecttype */
|
|
316
|
+
tn_projecttype_label?: string;
|
|
317
|
+
/** Purchase order reference (custom) */
|
|
318
|
+
tn_purchaseorder?: string;
|
|
319
|
+
createdbyname?: string;
|
|
320
|
+
createdbyyominame?: string;
|
|
321
|
+
/** Date and time when the record was created. */
|
|
322
|
+
createdon?: string;
|
|
323
|
+
createdonbehalfbyname?: string;
|
|
324
|
+
createdonbehalfbyyominame?: string;
|
|
325
|
+
modifiedbyname?: string;
|
|
326
|
+
modifiedbyyominame?: string;
|
|
327
|
+
/** Date and time when the record was modified. */
|
|
328
|
+
modifiedon?: string;
|
|
329
|
+
modifiedonbehalfbyname?: string;
|
|
330
|
+
modifiedonbehalfbyyominame?: string;
|
|
331
|
+
/** Shows the aggregate of actual expense cost on the project (For internal use only). */
|
|
332
|
+
msdyn_actualexpensecost?: number;
|
|
333
|
+
/** Value of the Actual Expense Cost in base currency (For internal use only). */
|
|
334
|
+
msdyn_actualexpensecost_base?: number;
|
|
335
|
+
/** Shows the aggregate of actual expense sales on the project (For internal use only) */
|
|
336
|
+
msdyn_actualexpensesales?: number;
|
|
337
|
+
/** Shows the value of the actual expense sales in the base currency (For internal use only). */
|
|
338
|
+
msdyn_actualexpensesales_base?: number;
|
|
339
|
+
/** Shows the aggregate of actual fee sales on the project (For internal use only) */
|
|
340
|
+
msdyn_actualfeesales?: number;
|
|
341
|
+
/** Shows the value of the actual fee sales in the base currency (For internal use only). */
|
|
342
|
+
msdyn_actualfeesales_base?: number;
|
|
343
|
+
/** Shows the aggregate of actual labor cost on the project (For internal use only). */
|
|
344
|
+
msdyn_actuallaborcost?: number;
|
|
345
|
+
/** Value of the Actual Labor Cost in base currency (For internal use only). */
|
|
346
|
+
msdyn_actuallaborcost_base?: number;
|
|
347
|
+
/** Shows the aggregate of actual material cost on the project (For internal use only) */
|
|
348
|
+
msdyn_actualmaterialcost?: number;
|
|
349
|
+
/** Shows the value of the actual material cost in the base currency (For internal use only). */
|
|
350
|
+
msdyn_actualmaterialcost_base?: number;
|
|
351
|
+
/** Shows the aggregate of actual material sales on the project (For internal use only) */
|
|
352
|
+
msdyn_actualmaterialsales?: number;
|
|
353
|
+
/** Shows the value of the actual material sales in the base currency (For internal use only). */
|
|
354
|
+
msdyn_actualmaterialsales_base?: number;
|
|
355
|
+
/** Shows the aggregate of actual milestone sales on the project (For internal use only) */
|
|
356
|
+
msdyn_actualmilestonesales?: number;
|
|
357
|
+
/** Shows the value of the actual milestone sales in the base currency (For internal use only). */
|
|
358
|
+
msdyn_actualmilestonesales_base?: number;
|
|
359
|
+
/** Shows the aggregate of actual labor sales on the project (For internal use only). */
|
|
360
|
+
msdyn_actualsales?: number;
|
|
361
|
+
/** Shows the value of the actual labor sales in the base currency (For internal use only). */
|
|
362
|
+
msdyn_actualsales_base?: number;
|
|
363
|
+
/** Allow percent complete update */
|
|
364
|
+
msdyn_allowpercentcompleteupdate?: boolean;
|
|
365
|
+
/** Current Budget Selected (For internal use only) */
|
|
366
|
+
msdyn_budget?: string;
|
|
367
|
+
/** GUID of the related record */
|
|
368
|
+
_msdyn_budget_value?: string;
|
|
369
|
+
/** Budget Evaluation Last Run On (For internal use only). */
|
|
370
|
+
msdyn_budgetevaluationlastrunon?: string;
|
|
371
|
+
/** Matches actuals to budget lines using priority attributes, even if actual dates fall outside the budget line range */
|
|
372
|
+
msdyn_budgetignoredateduringmatching?: boolean;
|
|
373
|
+
msdyn_budgetsystemjobid?: string;
|
|
374
|
+
/** The status of the bulk generation operations running on the project entity. If no operation is running, the value is null. System Field - For PSA Use Only. */
|
|
375
|
+
msdyn_bulkgenerationstatus?: number;
|
|
376
|
+
/** Display label for msdyn_bulkgenerationstatus */
|
|
377
|
+
msdyn_bulkgenerationstatus_label?: string;
|
|
378
|
+
msdyn_businesscase?: string;
|
|
379
|
+
/** Id of the calendar for the project. */
|
|
380
|
+
msdyn_calendarid?: string;
|
|
381
|
+
/** Enter the comments that are used to describe the current project status. */
|
|
382
|
+
msdyn_comments?: string;
|
|
383
|
+
/** The Contract Line associated with this project (For internal use only) */
|
|
384
|
+
msdyn_contractlineproject?: string;
|
|
385
|
+
/** GUID of the related record */
|
|
386
|
+
_msdyn_contractlineproject_value?: string;
|
|
387
|
+
/** Select the organizational unit sponsoring the project. */
|
|
388
|
+
msdyn_contractorganizationalunitid?: string;
|
|
389
|
+
/** GUID of the related record */
|
|
390
|
+
_msdyn_contractorganizationalunitid_value?: string;
|
|
391
|
+
/** Team members options for copying in Project copy form */
|
|
392
|
+
msdyn_copy_teammembers_options?: number;
|
|
393
|
+
/** Display label for msdyn_copy_teammembers_options */
|
|
394
|
+
msdyn_copy_teammembers_options_label?: string;
|
|
395
|
+
/** This is an internal field, used for Copy Project related Correlation Identifier. System Field - For PSA Use Only. */
|
|
396
|
+
msdyn_copyprojectcorrelationid?: string;
|
|
397
|
+
/** This is an internal field, used for Copy Project related Session Identifier. System Field - For PSA Use Only. */
|
|
398
|
+
msdyn_copyprojectsessionid?: string;
|
|
399
|
+
/** Shows the actual cost divided by the estimated cost at completion. (For internal use only). */
|
|
400
|
+
msdyn_costconsumption?: number;
|
|
401
|
+
/** Sum of Actual Cost and Remaining cost (For internal use only). */
|
|
402
|
+
msdyn_costestimateatcomplete?: number;
|
|
403
|
+
/** Value of the Cost estimate at completion (EAC) in base currency (For internal use only). */
|
|
404
|
+
msdyn_costestimateatcomplete_base?: number;
|
|
405
|
+
msdyn_costperformence?: number;
|
|
406
|
+
/** Display label for msdyn_costperformence */
|
|
407
|
+
msdyn_costperformence_label?: string;
|
|
408
|
+
/** Variance between the estimated cost and the forecasted cost based on the estimate at completion (EAC) (For internal use only). */
|
|
409
|
+
msdyn_costvariance?: number;
|
|
410
|
+
/** Shows the value of the cost variance in the base currency (For internal use only). */
|
|
411
|
+
msdyn_costvariance_base?: number;
|
|
412
|
+
/** Use days when the unit of measure for a task is months. */
|
|
413
|
+
msdyn_dayspermonth?: number;
|
|
414
|
+
/** This is an internal field, mainly used during import so that we don't create a team member record for the project manager. System Field - For PSA Use Only. */
|
|
415
|
+
msdyn_disablecreateofteammemberformanager?: boolean;
|
|
416
|
+
/** Shows the total of actual hours and the remaining hours. */
|
|
417
|
+
msdyn_effortestimateatcompleteeac?: number;
|
|
418
|
+
/** (Deprecated in v4.9) Exchange rate for the currency associated with the project with respect to the base currency. */
|
|
419
|
+
msdyn_exchangerate?: number;
|
|
420
|
+
/** Number of years the budget end date can extend beyond the project’s end date */
|
|
421
|
+
msdyn_extendbudgetendbyyears?: number;
|
|
422
|
+
/** Number of years the budget line start date can precede the project’s actual start date */
|
|
423
|
+
msdyn_extendbudgetstartbyyears?: number;
|
|
424
|
+
/** Last sync xRM Global Revision Token from PSS */
|
|
425
|
+
msdyn_globalrevisiontoken?: string;
|
|
426
|
+
/** Use hours when the unit of measure for a task is days. */
|
|
427
|
+
msdyn_hoursperday?: number;
|
|
428
|
+
/** Use hours when the unit of measure for a task is weeks. */
|
|
429
|
+
msdyn_hoursperweek?: number;
|
|
430
|
+
/** Specifies if the project is linked to a project in MS Project */
|
|
431
|
+
msdyn_islinkedtomsprojectclient?: boolean;
|
|
432
|
+
/** The URL for the linked document (For internal use only). */
|
|
433
|
+
msdyn_linkeddocumenturl?: string;
|
|
434
|
+
/** The MS Project document belonging to the project */
|
|
435
|
+
msdyn_msprojectdocument?: string;
|
|
436
|
+
/** GUID of the related record */
|
|
437
|
+
_msdyn_msprojectdocument_value?: string;
|
|
438
|
+
/** CreatedBy value maintained by Project for the web */
|
|
439
|
+
msdyn_pfwcreatedby?: string;
|
|
440
|
+
/** GUID of the related record */
|
|
441
|
+
_msdyn_pfwcreatedby_value?: string;
|
|
442
|
+
/** ModifiedBy value maintained by Project for the web */
|
|
443
|
+
msdyn_pfwmodifiedby?: string;
|
|
444
|
+
/** GUID of the related record */
|
|
445
|
+
_msdyn_pfwmodifiedby_value?: string;
|
|
446
|
+
/** Shows the aggregate of the planned expense cost of all the associated tasks. */
|
|
447
|
+
msdyn_plannedexpensecost?: number;
|
|
448
|
+
/** Value of the Estimated Expense Cost in base currency (For internal use only). */
|
|
449
|
+
msdyn_plannedexpensecost_base?: number;
|
|
450
|
+
/** Shows the aggregate of estimated expense sales on the project (For internal use only) */
|
|
451
|
+
msdyn_plannedexpensesales?: number;
|
|
452
|
+
/** Shows the value of the estimated expense sales in the base currency (For internal use only). */
|
|
453
|
+
msdyn_plannedexpensesales_base?: number;
|
|
454
|
+
/** Shows the aggregate of the planned labor cost of all the associated tasks. */
|
|
455
|
+
msdyn_plannedlaborcost?: number;
|
|
456
|
+
/** Value of the Estimated Labor Cost in base currency (For internal use only). */
|
|
457
|
+
msdyn_plannedlaborcost_base?: number;
|
|
458
|
+
/** Shows the aggregate of planned material cost on the project (For internal use only) */
|
|
459
|
+
msdyn_plannedmaterialcost?: number;
|
|
460
|
+
/** Shows the value of the planned material cost in the base currency (For internal use only). */
|
|
461
|
+
msdyn_plannedmaterialcost_base?: number;
|
|
462
|
+
/** Shows the aggregate of planned material sales on the project (For internal use only) */
|
|
463
|
+
msdyn_plannedmaterialsales?: number;
|
|
464
|
+
/** Shows the value of the planned material sales in the base currency (For internal use only). */
|
|
465
|
+
msdyn_plannedmaterialsales_base?: number;
|
|
466
|
+
/** Shows the estimated labor sales (For internal use only). */
|
|
467
|
+
msdyn_plannedsales?: number;
|
|
468
|
+
/** Shows the value of the estimated labor sales in the base currency (For internal use only). */
|
|
469
|
+
msdyn_plannedsales_base?: number;
|
|
470
|
+
/** Last sync Planner Revision Token from PSS */
|
|
471
|
+
msdyn_plannerlastsavedrevisiontoken?: string;
|
|
472
|
+
/** Shows the Planner Replication State wrt CDS */
|
|
473
|
+
msdyn_plannerreplicationstate?: string;
|
|
474
|
+
/** The program this project is related to. */
|
|
475
|
+
msdyn_program?: string;
|
|
476
|
+
/** GUID of the related record */
|
|
477
|
+
_msdyn_program_value?: string;
|
|
478
|
+
/** This is a system field for internal use only. */
|
|
479
|
+
msdyn_projectimportstagingid?: string;
|
|
480
|
+
/** GUID of the related record */
|
|
481
|
+
_msdyn_projectimportstagingid_value?: string;
|
|
482
|
+
/** Indicates if the project resource requirements are visible to the resources assigned to the project. */
|
|
483
|
+
msdyn_projectresourcerequirementsvisibletore?: boolean;
|
|
484
|
+
/** The Team associated with Project. */
|
|
485
|
+
msdyn_projectteamid?: string;
|
|
486
|
+
/** GUID of the related record */
|
|
487
|
+
_msdyn_projectteamid_value?: string;
|
|
488
|
+
/** The Quote Line associated with this project (For internal use only) */
|
|
489
|
+
msdyn_quotelineproject?: string;
|
|
490
|
+
/** GUID of the related record */
|
|
491
|
+
_msdyn_quotelineproject_value?: string;
|
|
492
|
+
/** Shows the difference between the estimated labor cost and the actual labor cost. */
|
|
493
|
+
msdyn_remainingcost?: number;
|
|
494
|
+
/** Shows the value of the remaining labor cost in the base currency. */
|
|
495
|
+
msdyn_remainingcost_base?: number;
|
|
496
|
+
/** Shows the difference between estimated labor sales and the actual labor sales. */
|
|
497
|
+
msdyn_remainingsales?: number;
|
|
498
|
+
/** Shows the value of the remaining labor sales in the base currency. */
|
|
499
|
+
msdyn_remainingsales_base?: number;
|
|
500
|
+
/** Header for the replay logs. */
|
|
501
|
+
msdyn_replaylogheader?: string;
|
|
502
|
+
/** GUID of the related record */
|
|
503
|
+
_msdyn_replaylogheader_value?: string;
|
|
504
|
+
/** Shows the actual sales divided by the estimated sales. */
|
|
505
|
+
msdyn_salesconsumption?: number;
|
|
506
|
+
/** Shows the total of actual and remaining sales. */
|
|
507
|
+
msdyn_salesestimateatcompleteeac?: number;
|
|
508
|
+
/** Value of the Sales Estimate At Complete (EAC) in base currency. */
|
|
509
|
+
msdyn_salesestimateatcompleteeac_base?: number;
|
|
510
|
+
/** The contract associated with this project */
|
|
511
|
+
msdyn_salesorderid?: string;
|
|
512
|
+
/** GUID of the related record */
|
|
513
|
+
_msdyn_salesorderid_value?: string;
|
|
514
|
+
/** Shows the difference between the planned sales and the sales estimate at completion (EAC). */
|
|
515
|
+
msdyn_salesvariance?: number;
|
|
516
|
+
/** Shows the value of the sales variance in the base currency. */
|
|
517
|
+
msdyn_salesvariance_base?: number;
|
|
518
|
+
/** Default Scheduling Mode used for all tasks on the project. If the value is null, the mode is a fixed duration. If this field is read-only, the parameter is defined by your organization and can't be changed. */
|
|
519
|
+
msdyn_schedulemode?: number;
|
|
520
|
+
/** Display label for msdyn_schedulemode */
|
|
521
|
+
msdyn_schedulemode_label?: string;
|
|
522
|
+
/** Describes the schedule performance of the project. */
|
|
523
|
+
msdyn_scheduleperformance?: number;
|
|
524
|
+
/** Display label for msdyn_scheduleperformance */
|
|
525
|
+
msdyn_scheduleperformance_label?: string;
|
|
526
|
+
/** Scheduling engine used by the project. */
|
|
527
|
+
msdyn_scheduler?: number;
|
|
528
|
+
/** Display label for msdyn_scheduler */
|
|
529
|
+
msdyn_scheduler_label?: string;
|
|
530
|
+
/** Shows the difference between the planned effort and the estimate at completion (EAC). */
|
|
531
|
+
msdyn_schedulevariance?: number;
|
|
532
|
+
/** Shows the most recent update on a status field(comments or overall project status). */
|
|
533
|
+
msdyn_statusupdatedon?: string;
|
|
534
|
+
/** The earliest start date of any task in the project. */
|
|
535
|
+
msdyn_taskearlieststart?: string;
|
|
536
|
+
/** To check if Project Teams channel mapping is backfilled or not */
|
|
537
|
+
msdyn_teamschannelmappingbackfilled?: boolean;
|
|
538
|
+
/** Shows the total number of team members assigned to this project */
|
|
539
|
+
msdyn_teamsize?: number;
|
|
540
|
+
/** Last Updated time of rollup field Team Size. */
|
|
541
|
+
msdyn_teamsize_date?: string;
|
|
542
|
+
/** State of rollup field Team Size. */
|
|
543
|
+
msdyn_teamsize_state?: number;
|
|
544
|
+
/** Shows the value of the total actual cost in the base currency. */
|
|
545
|
+
msdyn_totalactualcost_base?: number;
|
|
546
|
+
/** Shows aggregated sales values from all project actuals (For internal use only) */
|
|
547
|
+
msdyn_totalactualsales?: number;
|
|
548
|
+
/** Shows the value of the actual total sales in the base currency (For internal use only). */
|
|
549
|
+
msdyn_totalactualsales_base?: number;
|
|
550
|
+
/** Shows the value of the total planned cost in the base currency. */
|
|
551
|
+
msdyn_totalplannedcost_base?: number;
|
|
552
|
+
/** Shows aggregate of estimated sales values on the project (For internal use only) */
|
|
553
|
+
msdyn_totalplannedsales?: number;
|
|
554
|
+
/** Shows the value of the estimated total sales in the base currency (For internal use only). */
|
|
555
|
+
msdyn_totalplannedsales_base?: number;
|
|
556
|
+
/** Finish date of the project (Time Zone Agnostic) */
|
|
557
|
+
msdyn_tzafinish?: string;
|
|
558
|
+
/** Start date of the project (Time Zone Agnostic) */
|
|
559
|
+
msdyn_tzascheduledstart?: string;
|
|
560
|
+
msdyn_valuestatement?: string;
|
|
561
|
+
/** Select the work hour template used to create the project calendar. */
|
|
562
|
+
msdyn_workhourtemplate?: string;
|
|
563
|
+
/** GUID of the related record */
|
|
564
|
+
_msdyn_workhourtemplate_value?: string;
|
|
565
|
+
/** Owner Id */
|
|
566
|
+
ownerid?: string;
|
|
567
|
+
/** GUID of the related record */
|
|
568
|
+
_ownerid_value?: string;
|
|
569
|
+
/** Owner Id Type */
|
|
570
|
+
owneridtype?: string;
|
|
571
|
+
owningbusinessunitname?: string;
|
|
572
|
+
tn_numberofsprints?: number;
|
|
573
|
+
tn_sprintnameseed?: number;
|
|
574
|
+
tn_sprintstartdate?: string;
|
|
575
|
+
}
|
|
576
|
+
/** Fields for the `account` table */
|
|
577
|
+
export interface Account {
|
|
578
|
+
/** Unique account identifier */
|
|
579
|
+
accountid?: string;
|
|
580
|
+
/** Account name */
|
|
581
|
+
name?: string;
|
|
582
|
+
/** Main phone number */
|
|
583
|
+
telephone1?: string;
|
|
584
|
+
/** Primary email address */
|
|
585
|
+
emailaddress1?: string;
|
|
586
|
+
/** Website URL */
|
|
587
|
+
websiteurl?: string;
|
|
588
|
+
/** Primary contact */
|
|
589
|
+
primarycontactid?: string;
|
|
590
|
+
/** GUID of the related contact */
|
|
591
|
+
_primarycontactid_value?: string;
|
|
592
|
+
/** Parent account */
|
|
593
|
+
parentaccountid?: string;
|
|
594
|
+
/** GUID of the related account */
|
|
595
|
+
_parentaccountid_value?: string;
|
|
596
|
+
/** Street address line 1 */
|
|
597
|
+
address1_line1?: string;
|
|
598
|
+
/** Street address line 2 */
|
|
599
|
+
address1_line2?: string;
|
|
600
|
+
/** City */
|
|
601
|
+
address1_city?: string;
|
|
602
|
+
/** Postal code */
|
|
603
|
+
address1_postalcode?: string;
|
|
604
|
+
/** Country */
|
|
605
|
+
address1_country?: string;
|
|
606
|
+
/** State */
|
|
607
|
+
statecode?: number;
|
|
608
|
+
/** Display label for statecode */
|
|
609
|
+
statecode_label?: string;
|
|
610
|
+
/** Status reason */
|
|
611
|
+
statuscode?: number;
|
|
612
|
+
/** Display label for statuscode */
|
|
613
|
+
statuscode_label?: string;
|
|
614
|
+
/** Record owner */
|
|
615
|
+
ownerid?: string;
|
|
616
|
+
/** GUID of the related record */
|
|
617
|
+
_ownerid_value?: string;
|
|
618
|
+
/** Date created */
|
|
619
|
+
createdon?: string;
|
|
620
|
+
/** Date last modified */
|
|
621
|
+
modifiedon?: string;
|
|
622
|
+
/** Select a category to indicate whether the customer account is standard or preferred. */
|
|
623
|
+
accountcategorycode?: number;
|
|
624
|
+
/** Display label for accountcategorycode */
|
|
625
|
+
accountcategorycode_label?: string;
|
|
626
|
+
/** Select a classification code to indicate the potential value of the customer account based on the projected return on investment, cooperation level, sales cycle length or other criteria. */
|
|
627
|
+
accountclassificationcode?: number;
|
|
628
|
+
/** Display label for accountclassificationcode */
|
|
629
|
+
accountclassificationcode_label?: string;
|
|
630
|
+
/** Type an ID number or code for the account to quickly search and identify the account in system views. */
|
|
631
|
+
accountnumber?: string;
|
|
632
|
+
/** Select a rating to indicate the value of the customer account. */
|
|
633
|
+
accountratingcode?: number;
|
|
634
|
+
/** Display label for accountratingcode */
|
|
635
|
+
accountratingcode_label?: string;
|
|
636
|
+
/** Unique identifier for address 1. */
|
|
637
|
+
address1_addressid?: string;
|
|
638
|
+
/** Select the primary address type. */
|
|
639
|
+
address1_addresstypecode?: number;
|
|
640
|
+
/** Display label for address1_addresstypecode */
|
|
641
|
+
address1_addresstypecode_label?: string;
|
|
642
|
+
/** Shows the complete primary address. */
|
|
643
|
+
address1_composite?: string;
|
|
644
|
+
/** Type the county for the primary address. */
|
|
645
|
+
address1_county?: string;
|
|
646
|
+
/** Type the fax number associated with the primary address. */
|
|
647
|
+
address1_fax?: string;
|
|
648
|
+
/** Select the freight terms for the primary address to make sure shipping orders are processed correctly. */
|
|
649
|
+
address1_freighttermscode?: number;
|
|
650
|
+
/** Display label for address1_freighttermscode */
|
|
651
|
+
address1_freighttermscode_label?: string;
|
|
652
|
+
/** Type the latitude value for the primary address for use in mapping and other applications. */
|
|
653
|
+
address1_latitude?: number;
|
|
654
|
+
/** Type the third line of the primary address. */
|
|
655
|
+
address1_line3?: string;
|
|
656
|
+
/** Type the longitude value for the primary address for use in mapping and other applications. */
|
|
657
|
+
address1_longitude?: number;
|
|
658
|
+
/** Type a descriptive name for the primary address, such as Corporate Headquarters. */
|
|
659
|
+
address1_name?: string;
|
|
660
|
+
/** Type the post office box number of the primary address. */
|
|
661
|
+
address1_postofficebox?: string;
|
|
662
|
+
/** Type the name of the main contact at the account's primary address. */
|
|
663
|
+
address1_primarycontactname?: string;
|
|
664
|
+
/** Select a shipping method for deliveries sent to this address. */
|
|
665
|
+
address1_shippingmethodcode?: number;
|
|
666
|
+
/** Display label for address1_shippingmethodcode */
|
|
667
|
+
address1_shippingmethodcode_label?: string;
|
|
668
|
+
/** Type the state or province of the primary address. */
|
|
669
|
+
address1_stateorprovince?: string;
|
|
670
|
+
/** Type the main phone number associated with the primary address. */
|
|
671
|
+
address1_telephone1?: string;
|
|
672
|
+
/** Type a second phone number associated with the primary address. */
|
|
673
|
+
address1_telephone2?: string;
|
|
674
|
+
/** Type a third phone number associated with the primary address. */
|
|
675
|
+
address1_telephone3?: string;
|
|
676
|
+
/** Type the UPS zone of the primary address to make sure shipping charges are calculated correctly and deliveries are made promptly, if shipped by UPS. */
|
|
677
|
+
address1_upszone?: string;
|
|
678
|
+
/** Select the time zone, or UTC offset, for this address so that other people can reference it when they contact someone at this address. */
|
|
679
|
+
address1_utcoffset?: number;
|
|
680
|
+
/** Unique identifier for address 2. */
|
|
681
|
+
address2_addressid?: string;
|
|
682
|
+
/** Select the secondary address type. */
|
|
683
|
+
address2_addresstypecode?: number;
|
|
684
|
+
/** Display label for address2_addresstypecode */
|
|
685
|
+
address2_addresstypecode_label?: string;
|
|
686
|
+
/** Type the city for the secondary address. */
|
|
687
|
+
address2_city?: string;
|
|
688
|
+
/** Shows the complete secondary address. */
|
|
689
|
+
address2_composite?: string;
|
|
690
|
+
/** Type the country or region for the secondary address. */
|
|
691
|
+
address2_country?: string;
|
|
692
|
+
/** Type the county for the secondary address. */
|
|
693
|
+
address2_county?: string;
|
|
694
|
+
/** Type the fax number associated with the secondary address. */
|
|
695
|
+
address2_fax?: string;
|
|
696
|
+
/** Select the freight terms for the secondary address to make sure shipping orders are processed correctly. */
|
|
697
|
+
address2_freighttermscode?: number;
|
|
698
|
+
/** Display label for address2_freighttermscode */
|
|
699
|
+
address2_freighttermscode_label?: string;
|
|
700
|
+
/** Type the latitude value for the secondary address for use in mapping and other applications. */
|
|
701
|
+
address2_latitude?: number;
|
|
702
|
+
/** Type the first line of the secondary address. */
|
|
703
|
+
address2_line1?: string;
|
|
704
|
+
/** Type the second line of the secondary address. */
|
|
705
|
+
address2_line2?: string;
|
|
706
|
+
/** Type the third line of the secondary address. */
|
|
707
|
+
address2_line3?: string;
|
|
708
|
+
/** Type the longitude value for the secondary address for use in mapping and other applications. */
|
|
709
|
+
address2_longitude?: number;
|
|
710
|
+
/** Type a descriptive name for the secondary address, such as Corporate Headquarters. */
|
|
711
|
+
address2_name?: string;
|
|
712
|
+
/** Type the ZIP Code or postal code for the secondary address. */
|
|
713
|
+
address2_postalcode?: string;
|
|
714
|
+
/** Type the post office box number of the secondary address. */
|
|
715
|
+
address2_postofficebox?: string;
|
|
716
|
+
/** Type the name of the main contact at the account's secondary address. */
|
|
717
|
+
address2_primarycontactname?: string;
|
|
718
|
+
/** Select a shipping method for deliveries sent to this address. */
|
|
719
|
+
address2_shippingmethodcode?: number;
|
|
720
|
+
/** Display label for address2_shippingmethodcode */
|
|
721
|
+
address2_shippingmethodcode_label?: string;
|
|
722
|
+
/** Type the state or province of the secondary address. */
|
|
723
|
+
address2_stateorprovince?: string;
|
|
724
|
+
/** Type the main phone number associated with the secondary address. */
|
|
725
|
+
address2_telephone1?: string;
|
|
726
|
+
/** Type a second phone number associated with the secondary address. */
|
|
727
|
+
address2_telephone2?: string;
|
|
728
|
+
/** Type a third phone number associated with the secondary address. */
|
|
729
|
+
address2_telephone3?: string;
|
|
730
|
+
/** Type the UPS zone of the secondary address to make sure shipping charges are calculated correctly and deliveries are made promptly, if shipped by UPS. */
|
|
731
|
+
address2_upszone?: string;
|
|
732
|
+
/** Select the time zone, or UTC offset, for this address so that other people can reference it when they contact someone at this address. */
|
|
733
|
+
address2_utcoffset?: number;
|
|
734
|
+
adx_createdbyipaddress?: string;
|
|
735
|
+
adx_createdbyusername?: string;
|
|
736
|
+
adx_modifiedbyipaddress?: string;
|
|
737
|
+
adx_modifiedbyusername?: string;
|
|
738
|
+
/** For system use only. */
|
|
739
|
+
aging30?: number;
|
|
740
|
+
/** The base currency equivalent of the aging 30 field. */
|
|
741
|
+
aging30_base?: number;
|
|
742
|
+
/** For system use only. */
|
|
743
|
+
aging60?: number;
|
|
744
|
+
/** The base currency equivalent of the aging 60 field. */
|
|
745
|
+
aging60_base?: number;
|
|
746
|
+
/** For system use only. */
|
|
747
|
+
aging90?: number;
|
|
748
|
+
/** The base currency equivalent of the aging 90 field. */
|
|
749
|
+
aging90_base?: number;
|
|
750
|
+
/** Select the legal designation or other business type of the account for contracts or reporting purposes. */
|
|
751
|
+
businesstypecode?: number;
|
|
752
|
+
/** Display label for businesstypecode */
|
|
753
|
+
businesstypecode_label?: string;
|
|
754
|
+
/** Shows the external party who created the record. */
|
|
755
|
+
createdbyexternalparty?: string;
|
|
756
|
+
/** GUID of the related record */
|
|
757
|
+
_createdbyexternalparty_value?: string;
|
|
758
|
+
createdbyname?: string;
|
|
759
|
+
createdbyyominame?: string;
|
|
760
|
+
createdonbehalfbyname?: string;
|
|
761
|
+
createdonbehalfbyyominame?: string;
|
|
762
|
+
/** Type the credit limit of the account. This is a useful reference when you address invoice and accounting issues with the customer. */
|
|
763
|
+
creditlimit?: number;
|
|
764
|
+
/** Shows the credit limit converted to the system's default base currency for reporting purposes. */
|
|
765
|
+
creditlimit_base?: number;
|
|
766
|
+
/** Select whether the credit for the account is on hold. This is a useful reference while addressing the invoice and accounting issues with the customer. */
|
|
767
|
+
creditonhold?: boolean;
|
|
768
|
+
/** Select the size category or range of the account for segmentation and reporting purposes. */
|
|
769
|
+
customersizecode?: number;
|
|
770
|
+
/** Display label for customersizecode */
|
|
771
|
+
customersizecode_label?: string;
|
|
772
|
+
/** Select the category that best describes the relationship between the account and your organization. */
|
|
773
|
+
customertypecode?: number;
|
|
774
|
+
/** Display label for customertypecode */
|
|
775
|
+
customertypecode_label?: string;
|
|
776
|
+
/** Choose the default price list associated with the account to make sure the correct product prices for this customer are applied in sales opportunities, quotes, and orders. */
|
|
777
|
+
defaultpricelevelid?: string;
|
|
778
|
+
/** GUID of the related record */
|
|
779
|
+
_defaultpricelevelid_value?: string;
|
|
780
|
+
/** Type additional information to describe the account, such as an excerpt from the company's website. */
|
|
781
|
+
description?: string;
|
|
782
|
+
/** Select whether the account allows bulk email sent through campaigns. If Do Not Allow is selected, the account can be added to marketing lists, but is excluded from email. */
|
|
783
|
+
donotbulkemail?: boolean;
|
|
784
|
+
/** Select whether the account allows bulk postal mail sent through marketing campaigns or quick campaigns. If Do Not Allow is selected, the account can be added to marketing lists, but will be excluded from the postal mail. */
|
|
785
|
+
donotbulkpostalmail?: boolean;
|
|
786
|
+
/** Select whether the account allows direct email sent from Microsoft Dynamics 365. */
|
|
787
|
+
donotemail?: boolean;
|
|
788
|
+
/** Select whether the account allows faxes. If Do Not Allow is selected, the account will be excluded from fax activities distributed in marketing campaigns. */
|
|
789
|
+
donotfax?: boolean;
|
|
790
|
+
/** Select whether the account allows phone calls. If Do Not Allow is selected, the account will be excluded from phone call activities distributed in marketing campaigns. */
|
|
791
|
+
donotphone?: boolean;
|
|
792
|
+
/** Select whether the account allows direct mail. If Do Not Allow is selected, the account will be excluded from letter activities distributed in marketing campaigns. */
|
|
793
|
+
donotpostalmail?: boolean;
|
|
794
|
+
/** Select whether the account accepts marketing materials, such as brochures or catalogs. */
|
|
795
|
+
donotsendmm?: boolean;
|
|
796
|
+
/** Type the secondary email address for the account. */
|
|
797
|
+
emailaddress2?: string;
|
|
798
|
+
/** Type an alternate email address for the account. */
|
|
799
|
+
emailaddress3?: string;
|
|
800
|
+
/** Shows the default image for the record. */
|
|
801
|
+
entityimage?: string;
|
|
802
|
+
entityimage_timestamp?: number;
|
|
803
|
+
entityimage_url?: string;
|
|
804
|
+
/** For internal use only. */
|
|
805
|
+
entityimageid?: string;
|
|
806
|
+
/** Type the fax number for the account. */
|
|
807
|
+
fax?: string;
|
|
808
|
+
/** Information about whether to allow following email activity like opens, attachment views and link clicks for emails sent to the account. */
|
|
809
|
+
followemail?: boolean;
|
|
810
|
+
/** Type the URL for the account's FTP site to enable users to access data and share documents. */
|
|
811
|
+
ftpsiteurl?: string;
|
|
812
|
+
/** Select the account's primary industry for use in marketing segmentation and demographic analysis. */
|
|
813
|
+
industrycode?: number;
|
|
814
|
+
/** Display label for industrycode */
|
|
815
|
+
industrycode_label?: string;
|
|
816
|
+
isprivate?: boolean;
|
|
817
|
+
/** Contains the date and time stamp of the last on hold time. */
|
|
818
|
+
lastonholdtime?: string;
|
|
819
|
+
/** Shows the date when the account was last included in a marketing campaign or quick campaign. */
|
|
820
|
+
lastusedincampaign?: string;
|
|
821
|
+
/** Type the market capitalization of the account to identify the company's equity, used as an indicator in financial performance analysis. */
|
|
822
|
+
marketcap?: number;
|
|
823
|
+
/** Shows the market capitalization converted to the system's default base currency. */
|
|
824
|
+
marketcap_base?: number;
|
|
825
|
+
/** Whether is only for marketing */
|
|
826
|
+
marketingonly?: boolean;
|
|
827
|
+
/** Shows the master account that the account was merged with. */
|
|
828
|
+
masterid?: string;
|
|
829
|
+
/** GUID of the related account */
|
|
830
|
+
_masterid_value?: string;
|
|
831
|
+
/** Shows whether the account has been merged with another account. */
|
|
832
|
+
merged?: boolean;
|
|
833
|
+
/** Shows the external party who modified the record. */
|
|
834
|
+
modifiedbyexternalparty?: string;
|
|
835
|
+
/** GUID of the related record */
|
|
836
|
+
_modifiedbyexternalparty_value?: string;
|
|
837
|
+
modifiedbyname?: string;
|
|
838
|
+
modifiedbyyominame?: string;
|
|
839
|
+
modifiedonbehalfbyname?: string;
|
|
840
|
+
modifiedonbehalfbyyominame?: string;
|
|
841
|
+
/** Unique identifier for Account associated with Account. */
|
|
842
|
+
msa_managingpartnerid?: string;
|
|
843
|
+
/** GUID of the related account */
|
|
844
|
+
_msa_managingpartnerid_value?: string;
|
|
845
|
+
msdyn_accountkpiid?: string;
|
|
846
|
+
/** GUID of the related record */
|
|
847
|
+
_msdyn_accountkpiid_value?: string;
|
|
848
|
+
/** Reference to an other account to be used for billing (only to be used if billing account differs) */
|
|
849
|
+
msdyn_billingaccount?: string;
|
|
850
|
+
/** GUID of the related account */
|
|
851
|
+
_msdyn_billingaccount_value?: string;
|
|
852
|
+
/** External Account ID from other systems. */
|
|
853
|
+
msdyn_externalaccountid?: string;
|
|
854
|
+
/** Describes whether account is opted out or not */
|
|
855
|
+
msdyn_gdproptout?: boolean;
|
|
856
|
+
/** Indicates the primary time zone that the client works on. */
|
|
857
|
+
msdyn_primarytimezone?: number;
|
|
858
|
+
/** Sales Acceleration Insights ID */
|
|
859
|
+
msdyn_salesaccelerationinsightid?: string;
|
|
860
|
+
/** GUID of the related record */
|
|
861
|
+
_msdyn_salesaccelerationinsightid_value?: string;
|
|
862
|
+
/** Unique identifier for Segment associated with account. */
|
|
863
|
+
msdyn_segmentid?: string;
|
|
864
|
+
/** GUID of the related record */
|
|
865
|
+
_msdyn_segmentid_value?: string;
|
|
866
|
+
/** Select whether the account is tax exempt. */
|
|
867
|
+
msdyn_taxexempt?: boolean;
|
|
868
|
+
/** Shows the government tax exempt number. */
|
|
869
|
+
msdyn_taxexemptnumber?: string;
|
|
870
|
+
/** Type the number of employees that work at the account for use in marketing segmentation and demographic analysis. */
|
|
871
|
+
numberofemployees?: number;
|
|
872
|
+
/** Shows how long, in minutes, that the record was on hold. */
|
|
873
|
+
onholdtime?: number;
|
|
874
|
+
/** Number of open opportunities against an account and its child accounts. */
|
|
875
|
+
opendeals?: number;
|
|
876
|
+
/** The date time for Open Deals. */
|
|
877
|
+
opendeals_date?: string;
|
|
878
|
+
/** State of Open Deals. */
|
|
879
|
+
opendeals_state?: number;
|
|
880
|
+
/** Sum of open revenue against an account and its child accounts. */
|
|
881
|
+
openrevenue?: number;
|
|
882
|
+
/** Sum of open revenue against an account and its child accounts. */
|
|
883
|
+
openrevenue_base?: number;
|
|
884
|
+
/** The date time for Open Revenue. */
|
|
885
|
+
openrevenue_date?: string;
|
|
886
|
+
/** State of Open Revenue. */
|
|
887
|
+
openrevenue_state?: number;
|
|
888
|
+
/** Shows the lead that the account was created from if the account was created by converting a lead in Microsoft Dynamics 365. This is used to relate the account to data on the originating lead for use in reporting and analytics. */
|
|
889
|
+
originatingleadid?: string;
|
|
890
|
+
/** GUID of the related record */
|
|
891
|
+
_originatingleadid_value?: string;
|
|
892
|
+
owneridtype?: string;
|
|
893
|
+
/** Select the account's ownership structure, such as public or private. */
|
|
894
|
+
ownershipcode?: number;
|
|
895
|
+
/** Display label for ownershipcode */
|
|
896
|
+
ownershipcode_label?: string;
|
|
897
|
+
owningbusinessunitname?: string;
|
|
898
|
+
/** For system use only. Legacy Microsoft Dynamics CRM 3.0 workflow data. */
|
|
899
|
+
participatesinworkflow?: boolean;
|
|
900
|
+
/** Select the payment terms to indicate when the customer needs to pay the total amount. */
|
|
901
|
+
paymenttermscode?: number;
|
|
902
|
+
/** Display label for paymenttermscode */
|
|
903
|
+
paymenttermscode_label?: string;
|
|
904
|
+
/** Select the preferred day of the week for service appointments. */
|
|
905
|
+
preferredappointmentdaycode?: number;
|
|
906
|
+
/** Display label for preferredappointmentdaycode */
|
|
907
|
+
preferredappointmentdaycode_label?: string;
|
|
908
|
+
/** Select the preferred time of day for service appointments. */
|
|
909
|
+
preferredappointmenttimecode?: number;
|
|
910
|
+
/** Display label for preferredappointmenttimecode */
|
|
911
|
+
preferredappointmenttimecode_label?: string;
|
|
912
|
+
/** Select the preferred method of contact. */
|
|
913
|
+
preferredcontactmethodcode?: number;
|
|
914
|
+
/** Display label for preferredcontactmethodcode */
|
|
915
|
+
preferredcontactmethodcode_label?: string;
|
|
916
|
+
/** Choose the account's preferred service facility or equipment to make sure services are scheduled correctly for the customer. */
|
|
917
|
+
preferredequipmentid?: string;
|
|
918
|
+
/** GUID of the related record */
|
|
919
|
+
_preferredequipmentid_value?: string;
|
|
920
|
+
/** Choose the account's preferred service for reference when you schedule service activities. */
|
|
921
|
+
preferredserviceid?: string;
|
|
922
|
+
/** GUID of the related record */
|
|
923
|
+
_preferredserviceid_value?: string;
|
|
924
|
+
/** Choose the preferred service representative for reference when you schedule service activities for the account. */
|
|
925
|
+
preferredsystemuserid?: string;
|
|
926
|
+
/** GUID of the related record */
|
|
927
|
+
_preferredsystemuserid_value?: string;
|
|
928
|
+
/** Primary Satori ID for Account */
|
|
929
|
+
primarysatoriid?: string;
|
|
930
|
+
/** Primary Twitter ID for Account */
|
|
931
|
+
primarytwitterid?: string;
|
|
932
|
+
/** Type the annual revenue for the account, used as an indicator in financial performance analysis. */
|
|
933
|
+
revenue?: number;
|
|
934
|
+
/** Shows the annual revenue converted to the system's default base currency. The calculations use the exchange rate specified in the Currencies area. */
|
|
935
|
+
revenue_base?: number;
|
|
936
|
+
/** Type the number of shares available to the public for the account. This number is used as an indicator in financial performance analysis. */
|
|
937
|
+
sharesoutstanding?: number;
|
|
938
|
+
/** Select a shipping method for deliveries sent to the account's address to designate the preferred carrier or other delivery option. */
|
|
939
|
+
shippingmethodcode?: number;
|
|
940
|
+
/** Display label for shippingmethodcode */
|
|
941
|
+
shippingmethodcode_label?: string;
|
|
942
|
+
/** Type the Standard Industrial Classification (SIC) code that indicates the account's primary industry of business, for use in marketing segmentation and demographic analysis. */
|
|
943
|
+
sic?: string;
|
|
944
|
+
/** Choose the service level agreement (SLA) that you want to apply to the Account record. */
|
|
945
|
+
slaid?: string;
|
|
946
|
+
/** GUID of the related record */
|
|
947
|
+
_slaid_value?: string;
|
|
948
|
+
/** Last SLA that was applied to this case. This field is for internal use only. */
|
|
949
|
+
slainvokedid?: string;
|
|
950
|
+
/** GUID of the related record */
|
|
951
|
+
_slainvokedid_value?: string;
|
|
952
|
+
slaname?: string;
|
|
953
|
+
/** Type the stock exchange at which the account is listed to track their stock and financial performance of the company. */
|
|
954
|
+
stockexchange?: string;
|
|
955
|
+
/** Number of users or conversations followed the record */
|
|
956
|
+
teamsfollowed?: number;
|
|
957
|
+
/** Type a second phone number for this account. */
|
|
958
|
+
telephone2?: string;
|
|
959
|
+
/** Type a third phone number for this account. */
|
|
960
|
+
telephone3?: string;
|
|
961
|
+
/** Select a region or territory for the account for use in segmentation and analysis. */
|
|
962
|
+
territorycode?: number;
|
|
963
|
+
/** Display label for territorycode */
|
|
964
|
+
territorycode_label?: string;
|
|
965
|
+
/** territory_accounts */
|
|
966
|
+
territoryid?: string;
|
|
967
|
+
/** GUID of the related record */
|
|
968
|
+
_territoryid_value?: string;
|
|
969
|
+
/** Type the stock exchange symbol for the account to track financial performance of the company. You can click the code entered in this field to access the latest trading information from MSN Money. */
|
|
970
|
+
tickersymbol?: string;
|
|
971
|
+
/** Total time spent for emails (read and write) and meetings by me in relation to account record. */
|
|
972
|
+
timespentbymeonemailandmeetings?: string;
|
|
973
|
+
tn_integrationdetails?: string;
|
|
974
|
+
/** GUID of the related record */
|
|
975
|
+
_tn_integrationdetails_value?: string;
|
|
976
|
+
/** Type the phonetic spelling of the company name, if specified in Japanese, to make sure the name is pronounced correctly in phone calls and other communications. */
|
|
977
|
+
yominame?: string;
|
|
978
|
+
}
|
|
979
|
+
/** Fields for the `casenotes` table */
|
|
980
|
+
export interface Casenotes {
|
|
981
|
+
/** Unique note identifier */
|
|
982
|
+
annotationid?: string;
|
|
983
|
+
/** Note subject / title */
|
|
984
|
+
subject?: string;
|
|
985
|
+
/** Note body text */
|
|
986
|
+
notetext?: string;
|
|
987
|
+
/** Whether the note has a file attachment */
|
|
988
|
+
isdocument?: boolean;
|
|
989
|
+
/** Attachment file name */
|
|
990
|
+
filename?: string;
|
|
991
|
+
/** Attachment file size in bytes */
|
|
992
|
+
filesize?: number;
|
|
993
|
+
/** Attachment MIME type */
|
|
994
|
+
mimetype?: string;
|
|
995
|
+
/** Regarding record (parent case) */
|
|
996
|
+
objectid?: string;
|
|
997
|
+
/** GUID of the related record */
|
|
998
|
+
_objectid_value?: string;
|
|
999
|
+
/** Parent case (used when creating notes) */
|
|
1000
|
+
objectid_incident?: string;
|
|
1001
|
+
/** GUID of the related incident */
|
|
1002
|
+
_objectid_incident_value?: string;
|
|
1003
|
+
/** Regarding entity type (always 'incident' for case notes) */
|
|
1004
|
+
objecttypecode?: string;
|
|
1005
|
+
/** Record owner */
|
|
1006
|
+
ownerid?: string;
|
|
1007
|
+
/** GUID of the related record */
|
|
1008
|
+
_ownerid_value?: string;
|
|
1009
|
+
/** Date created */
|
|
1010
|
+
createdon?: string;
|
|
1011
|
+
/** Date last modified */
|
|
1012
|
+
modifiedon?: string;
|
|
1013
|
+
createdbyname?: string;
|
|
1014
|
+
createdbyyominame?: string;
|
|
1015
|
+
createdonbehalfbyname?: string;
|
|
1016
|
+
createdonbehalfbyyominame?: string;
|
|
1017
|
+
/** Contents of the note's attachment. */
|
|
1018
|
+
documentbody?: string;
|
|
1019
|
+
/** Dummy attribute associated with the note attachment */
|
|
1020
|
+
dummyfilename?: string;
|
|
1021
|
+
/** Dummy attribute associated with the note regarding */
|
|
1022
|
+
dummyregarding?: string;
|
|
1023
|
+
/** File pointer of the attachment. */
|
|
1024
|
+
filepointer?: string;
|
|
1025
|
+
/** Determines whether annotation record was autonomously created on conversation wrap up for the linked case record. */
|
|
1026
|
+
isautonomouslycreated?: boolean;
|
|
1027
|
+
/** Indicates if file is compressed in the storage. */
|
|
1028
|
+
iscompressed?: boolean;
|
|
1029
|
+
isprivate?: boolean;
|
|
1030
|
+
/** Language identifier for the note. */
|
|
1031
|
+
langid?: string;
|
|
1032
|
+
modifiedbyname?: string;
|
|
1033
|
+
modifiedbyyominame?: string;
|
|
1034
|
+
modifiedonbehalfbyname?: string;
|
|
1035
|
+
modifiedonbehalfbyyominame?: string;
|
|
1036
|
+
/** Regarding Object Type */
|
|
1037
|
+
objectidtypecode?: string;
|
|
1038
|
+
owneridtype?: string;
|
|
1039
|
+
owningbusinessunitname?: string;
|
|
1040
|
+
/** Prefix of the file pointer in blob storage. */
|
|
1041
|
+
prefix?: string;
|
|
1042
|
+
/** workflow step id associated with the note. */
|
|
1043
|
+
stepid?: string;
|
|
1044
|
+
/** Storage pointer. */
|
|
1045
|
+
storagepointer?: string;
|
|
1046
|
+
}
|
|
1047
|
+
/** Fields for the `contact` table */
|
|
1048
|
+
export interface Contact {
|
|
1049
|
+
/** Unique contact identifier */
|
|
1050
|
+
contactid?: string;
|
|
1051
|
+
/** Full name */
|
|
1052
|
+
fullname?: string;
|
|
1053
|
+
/** First name */
|
|
1054
|
+
firstname?: string;
|
|
1055
|
+
/** Last name */
|
|
1056
|
+
lastname?: string;
|
|
1057
|
+
/** Primary email address */
|
|
1058
|
+
emailaddress1?: string;
|
|
1059
|
+
/** Business phone */
|
|
1060
|
+
telephone1?: string;
|
|
1061
|
+
/** Mobile phone */
|
|
1062
|
+
mobilephone?: string;
|
|
1063
|
+
/** Job title */
|
|
1064
|
+
jobtitle?: string;
|
|
1065
|
+
/** Related account */
|
|
1066
|
+
parentcustomerid?: string;
|
|
1067
|
+
/** GUID of the related account */
|
|
1068
|
+
_parentcustomerid_value?: string;
|
|
1069
|
+
/** State */
|
|
1070
|
+
statecode?: number;
|
|
1071
|
+
/** Display label for statecode */
|
|
1072
|
+
statecode_label?: string;
|
|
1073
|
+
/** Date created */
|
|
1074
|
+
createdon?: string;
|
|
1075
|
+
/** Unique identifier of the account with which the contact is associated. */
|
|
1076
|
+
accountid?: string;
|
|
1077
|
+
/** GUID of the related account */
|
|
1078
|
+
_accountid_value?: string;
|
|
1079
|
+
/** Select the contact's role within the company or sales process, such as decision maker, employee, or influencer. */
|
|
1080
|
+
accountrolecode?: number;
|
|
1081
|
+
/** Display label for accountrolecode */
|
|
1082
|
+
accountrolecode_label?: string;
|
|
1083
|
+
/** Unique identifier for address 1. */
|
|
1084
|
+
address1_addressid?: string;
|
|
1085
|
+
/** Select the primary address type. */
|
|
1086
|
+
address1_addresstypecode?: number;
|
|
1087
|
+
/** Display label for address1_addresstypecode */
|
|
1088
|
+
address1_addresstypecode_label?: string;
|
|
1089
|
+
/** Type the city for the primary address. */
|
|
1090
|
+
address1_city?: string;
|
|
1091
|
+
/** Shows the complete primary address. */
|
|
1092
|
+
address1_composite?: string;
|
|
1093
|
+
/** Type the country or region for the primary address. */
|
|
1094
|
+
address1_country?: string;
|
|
1095
|
+
/** Type the county for the primary address. */
|
|
1096
|
+
address1_county?: string;
|
|
1097
|
+
/** Type the fax number associated with the primary address. */
|
|
1098
|
+
address1_fax?: string;
|
|
1099
|
+
/** Select the freight terms for the primary address to make sure shipping orders are processed correctly. */
|
|
1100
|
+
address1_freighttermscode?: number;
|
|
1101
|
+
/** Display label for address1_freighttermscode */
|
|
1102
|
+
address1_freighttermscode_label?: string;
|
|
1103
|
+
/** Type the latitude value for the primary address for use in mapping and other applications. */
|
|
1104
|
+
address1_latitude?: number;
|
|
1105
|
+
/** Type the first line of the primary address. */
|
|
1106
|
+
address1_line1?: string;
|
|
1107
|
+
/** Type the second line of the primary address. */
|
|
1108
|
+
address1_line2?: string;
|
|
1109
|
+
/** Type the third line of the primary address. */
|
|
1110
|
+
address1_line3?: string;
|
|
1111
|
+
/** Type the longitude value for the primary address for use in mapping and other applications. */
|
|
1112
|
+
address1_longitude?: number;
|
|
1113
|
+
/** Type a descriptive name for the primary address, such as Corporate Headquarters. */
|
|
1114
|
+
address1_name?: string;
|
|
1115
|
+
/** Type the ZIP Code or postal code for the primary address. */
|
|
1116
|
+
address1_postalcode?: string;
|
|
1117
|
+
/** Type the post office box number of the primary address. */
|
|
1118
|
+
address1_postofficebox?: string;
|
|
1119
|
+
/** Type the name of the main contact at the account's primary address. */
|
|
1120
|
+
address1_primarycontactname?: string;
|
|
1121
|
+
/** Select a shipping method for deliveries sent to this address. */
|
|
1122
|
+
address1_shippingmethodcode?: number;
|
|
1123
|
+
/** Display label for address1_shippingmethodcode */
|
|
1124
|
+
address1_shippingmethodcode_label?: string;
|
|
1125
|
+
/** Type the state or province of the primary address. */
|
|
1126
|
+
address1_stateorprovince?: string;
|
|
1127
|
+
/** Type the main phone number associated with the primary address. */
|
|
1128
|
+
address1_telephone1?: string;
|
|
1129
|
+
/** Type a second phone number associated with the primary address. */
|
|
1130
|
+
address1_telephone2?: string;
|
|
1131
|
+
/** Type a third phone number associated with the primary address. */
|
|
1132
|
+
address1_telephone3?: string;
|
|
1133
|
+
/** Type the UPS zone of the primary address to make sure shipping charges are calculated correctly and deliveries are made promptly, if shipped by UPS. */
|
|
1134
|
+
address1_upszone?: string;
|
|
1135
|
+
/** Select the time zone, or UTC offset, for this address so that other people can reference it when they contact someone at this address. */
|
|
1136
|
+
address1_utcoffset?: number;
|
|
1137
|
+
/** Unique identifier for address 2. */
|
|
1138
|
+
address2_addressid?: string;
|
|
1139
|
+
/** Select the secondary address type. */
|
|
1140
|
+
address2_addresstypecode?: number;
|
|
1141
|
+
/** Display label for address2_addresstypecode */
|
|
1142
|
+
address2_addresstypecode_label?: string;
|
|
1143
|
+
/** Type the city for the secondary address. */
|
|
1144
|
+
address2_city?: string;
|
|
1145
|
+
/** Shows the complete secondary address. */
|
|
1146
|
+
address2_composite?: string;
|
|
1147
|
+
/** Type the country or region for the secondary address. */
|
|
1148
|
+
address2_country?: string;
|
|
1149
|
+
/** Type the county for the secondary address. */
|
|
1150
|
+
address2_county?: string;
|
|
1151
|
+
/** Type the fax number associated with the secondary address. */
|
|
1152
|
+
address2_fax?: string;
|
|
1153
|
+
/** Select the freight terms for the secondary address to make sure shipping orders are processed correctly. */
|
|
1154
|
+
address2_freighttermscode?: number;
|
|
1155
|
+
/** Display label for address2_freighttermscode */
|
|
1156
|
+
address2_freighttermscode_label?: string;
|
|
1157
|
+
/** Type the latitude value for the secondary address for use in mapping and other applications. */
|
|
1158
|
+
address2_latitude?: number;
|
|
1159
|
+
/** Type the first line of the secondary address. */
|
|
1160
|
+
address2_line1?: string;
|
|
1161
|
+
/** Type the second line of the secondary address. */
|
|
1162
|
+
address2_line2?: string;
|
|
1163
|
+
/** Type the third line of the secondary address. */
|
|
1164
|
+
address2_line3?: string;
|
|
1165
|
+
/** Type the longitude value for the secondary address for use in mapping and other applications. */
|
|
1166
|
+
address2_longitude?: number;
|
|
1167
|
+
/** Type a descriptive name for the secondary address, such as Corporate Headquarters. */
|
|
1168
|
+
address2_name?: string;
|
|
1169
|
+
/** Type the ZIP Code or postal code for the secondary address. */
|
|
1170
|
+
address2_postalcode?: string;
|
|
1171
|
+
/** Type the post office box number of the secondary address. */
|
|
1172
|
+
address2_postofficebox?: string;
|
|
1173
|
+
/** Type the name of the main contact at the account's secondary address. */
|
|
1174
|
+
address2_primarycontactname?: string;
|
|
1175
|
+
/** Select a shipping method for deliveries sent to this address. */
|
|
1176
|
+
address2_shippingmethodcode?: number;
|
|
1177
|
+
/** Display label for address2_shippingmethodcode */
|
|
1178
|
+
address2_shippingmethodcode_label?: string;
|
|
1179
|
+
/** Type the state or province of the secondary address. */
|
|
1180
|
+
address2_stateorprovince?: string;
|
|
1181
|
+
/** Type the main phone number associated with the secondary address. */
|
|
1182
|
+
address2_telephone1?: string;
|
|
1183
|
+
/** Type a second phone number associated with the secondary address. */
|
|
1184
|
+
address2_telephone2?: string;
|
|
1185
|
+
/** Type a third phone number associated with the secondary address. */
|
|
1186
|
+
address2_telephone3?: string;
|
|
1187
|
+
/** Type the UPS zone of the secondary address to make sure shipping charges are calculated correctly and deliveries are made promptly, if shipped by UPS. */
|
|
1188
|
+
address2_upszone?: string;
|
|
1189
|
+
/** Select the time zone, or UTC offset, for this address so that other people can reference it when they contact someone at this address. */
|
|
1190
|
+
address2_utcoffset?: number;
|
|
1191
|
+
/** Unique identifier for address 3. */
|
|
1192
|
+
address3_addressid?: string;
|
|
1193
|
+
/** Select the third address type. */
|
|
1194
|
+
address3_addresstypecode?: number;
|
|
1195
|
+
/** Display label for address3_addresstypecode */
|
|
1196
|
+
address3_addresstypecode_label?: string;
|
|
1197
|
+
/** Type the city for the 3rd address. */
|
|
1198
|
+
address3_city?: string;
|
|
1199
|
+
/** Shows the complete third address. */
|
|
1200
|
+
address3_composite?: string;
|
|
1201
|
+
/** the country or region for the 3rd address. */
|
|
1202
|
+
address3_country?: string;
|
|
1203
|
+
/** Type the county for the third address. */
|
|
1204
|
+
address3_county?: string;
|
|
1205
|
+
/** Type the fax number associated with the third address. */
|
|
1206
|
+
address3_fax?: string;
|
|
1207
|
+
/** Select the freight terms for the third address to make sure shipping orders are processed correctly. */
|
|
1208
|
+
address3_freighttermscode?: number;
|
|
1209
|
+
/** Display label for address3_freighttermscode */
|
|
1210
|
+
address3_freighttermscode_label?: string;
|
|
1211
|
+
/** Type the latitude value for the third address for use in mapping and other applications. */
|
|
1212
|
+
address3_latitude?: number;
|
|
1213
|
+
/** the first line of the 3rd address. */
|
|
1214
|
+
address3_line1?: string;
|
|
1215
|
+
/** the second line of the 3rd address. */
|
|
1216
|
+
address3_line2?: string;
|
|
1217
|
+
/** the third line of the 3rd address. */
|
|
1218
|
+
address3_line3?: string;
|
|
1219
|
+
/** Type the longitude value for the third address for use in mapping and other applications. */
|
|
1220
|
+
address3_longitude?: number;
|
|
1221
|
+
/** Type a descriptive name for the third address, such as Corporate Headquarters. */
|
|
1222
|
+
address3_name?: string;
|
|
1223
|
+
/** the ZIP Code or postal code for the 3rd address. */
|
|
1224
|
+
address3_postalcode?: string;
|
|
1225
|
+
/** the post office box number of the 3rd address. */
|
|
1226
|
+
address3_postofficebox?: string;
|
|
1227
|
+
/** Type the name of the main contact at the account's third address. */
|
|
1228
|
+
address3_primarycontactname?: string;
|
|
1229
|
+
/** Select a shipping method for deliveries sent to this address. */
|
|
1230
|
+
address3_shippingmethodcode?: number;
|
|
1231
|
+
/** Display label for address3_shippingmethodcode */
|
|
1232
|
+
address3_shippingmethodcode_label?: string;
|
|
1233
|
+
/** the state or province of the third address. */
|
|
1234
|
+
address3_stateorprovince?: string;
|
|
1235
|
+
/** Type the main phone number associated with the third address. */
|
|
1236
|
+
address3_telephone1?: string;
|
|
1237
|
+
/** Type a second phone number associated with the third address. */
|
|
1238
|
+
address3_telephone2?: string;
|
|
1239
|
+
/** Type a third phone number associated with the primary address. */
|
|
1240
|
+
address3_telephone3?: string;
|
|
1241
|
+
/** Type the UPS zone of the third address to make sure shipping charges are calculated correctly and deliveries are made promptly, if shipped by UPS. */
|
|
1242
|
+
address3_upszone?: string;
|
|
1243
|
+
/** Select the time zone, or UTC offset, for this address so that other people can reference it when they contact someone at this address. */
|
|
1244
|
+
address3_utcoffset?: number;
|
|
1245
|
+
adx_confirmremovepassword?: boolean;
|
|
1246
|
+
adx_createdbyipaddress?: string;
|
|
1247
|
+
adx_createdbyusername?: string;
|
|
1248
|
+
/** Shows the current count of failed password attempts for the contact. */
|
|
1249
|
+
adx_identity_accessfailedcount?: number;
|
|
1250
|
+
/** Determines if the email is confirmed by the contact. */
|
|
1251
|
+
adx_identity_emailaddress1confirmed?: boolean;
|
|
1252
|
+
/** Indicates the last date and time the user successfully signed in to a portal. */
|
|
1253
|
+
adx_identity_lastsuccessfullogin?: string;
|
|
1254
|
+
/** Indicates that the contact can no longer sign in to the portal using the local account. */
|
|
1255
|
+
adx_identity_locallogindisabled?: boolean;
|
|
1256
|
+
/** Determines if this contact will track failed access attempts and become locked after too many failed attempts. To prevent the contact from becoming locked, you can disable this setting. */
|
|
1257
|
+
adx_identity_lockoutenabled?: boolean;
|
|
1258
|
+
/** Shows the moment in time when the locked contact becomes unlocked again. */
|
|
1259
|
+
adx_identity_lockoutenddate?: string;
|
|
1260
|
+
/** Determines if web authentication is enabled for the contact. */
|
|
1261
|
+
adx_identity_logonenabled?: boolean;
|
|
1262
|
+
/** Determines if the phone number is confirmed by the contact. */
|
|
1263
|
+
adx_identity_mobilephoneconfirmed?: boolean;
|
|
1264
|
+
adx_identity_newpassword?: string;
|
|
1265
|
+
adx_identity_passwordhash?: string;
|
|
1266
|
+
/** A token used to manage the web authentication session. */
|
|
1267
|
+
adx_identity_securitystamp?: string;
|
|
1268
|
+
/** Determines if two-factor authentication is enabled for the contact. */
|
|
1269
|
+
adx_identity_twofactorenabled?: boolean;
|
|
1270
|
+
/** Shows the user identity for local web authentication. */
|
|
1271
|
+
adx_identity_username?: string;
|
|
1272
|
+
adx_modifiedbyipaddress?: string;
|
|
1273
|
+
adx_modifiedbyusername?: string;
|
|
1274
|
+
adx_organizationname?: string;
|
|
1275
|
+
/** User’s preferred portal LCID */
|
|
1276
|
+
adx_preferredlcid?: number;
|
|
1277
|
+
/** Profile Alert */
|
|
1278
|
+
adx_profilealert?: boolean;
|
|
1279
|
+
/** Profile Alert Date */
|
|
1280
|
+
adx_profilealertdate?: string;
|
|
1281
|
+
/** Profile Alert Instructions */
|
|
1282
|
+
adx_profilealertinstructions?: string;
|
|
1283
|
+
/** Profile Is Anonymous */
|
|
1284
|
+
adx_profileisanonymous?: boolean;
|
|
1285
|
+
/** Profile Last Activity */
|
|
1286
|
+
adx_profilelastactivity?: string;
|
|
1287
|
+
/** Profile Modified On */
|
|
1288
|
+
adx_profilemodifiedon?: string;
|
|
1289
|
+
/** Public Profile Copy */
|
|
1290
|
+
adx_publicprofilecopy?: string;
|
|
1291
|
+
adx_timezone?: number;
|
|
1292
|
+
/** For system use only. */
|
|
1293
|
+
aging30?: number;
|
|
1294
|
+
/** Shows the Aging 30 field converted to the system's default base currency. The calculations use the exchange rate specified in the Currencies area. */
|
|
1295
|
+
aging30_base?: number;
|
|
1296
|
+
/** For system use only. */
|
|
1297
|
+
aging60?: number;
|
|
1298
|
+
/** Shows the Aging 60 field converted to the system's default base currency. The calculations use the exchange rate specified in the Currencies area. */
|
|
1299
|
+
aging60_base?: number;
|
|
1300
|
+
/** For system use only. */
|
|
1301
|
+
aging90?: number;
|
|
1302
|
+
/** Shows the Aging 90 field converted to the system's default base currency. The calculations use the exchange rate specified in the Currencies area. */
|
|
1303
|
+
aging90_base?: number;
|
|
1304
|
+
/** Enter the date of the contact's wedding or service anniversary for use in customer gift programs or other communications. */
|
|
1305
|
+
anniversary?: string;
|
|
1306
|
+
/** Type the contact's annual income for use in profiling and financial analysis. */
|
|
1307
|
+
annualincome?: number;
|
|
1308
|
+
/** Shows the Annual Income field converted to the system's default base currency. The calculations use the exchange rate specified in the Currencies area. */
|
|
1309
|
+
annualincome_base?: number;
|
|
1310
|
+
/** Type the name of the contact's assistant. */
|
|
1311
|
+
assistantname?: string;
|
|
1312
|
+
/** Type the phone number for the contact's assistant. */
|
|
1313
|
+
assistantphone?: string;
|
|
1314
|
+
/** Enter the contact's birthday for use in customer gift programs or other communications. */
|
|
1315
|
+
birthdate?: string;
|
|
1316
|
+
/** Type a second business phone number for this contact. */
|
|
1317
|
+
business2?: string;
|
|
1318
|
+
/** Stores Image of the Business Card */
|
|
1319
|
+
businesscard?: string;
|
|
1320
|
+
/** Stores Business Card Control Properties. */
|
|
1321
|
+
businesscardattributes?: string;
|
|
1322
|
+
/** Type a callback phone number for this contact. */
|
|
1323
|
+
callback?: string;
|
|
1324
|
+
/** Type the names of the contact's children for reference in communications and client programs. */
|
|
1325
|
+
childrensnames?: string;
|
|
1326
|
+
/** Type the company phone of the contact. */
|
|
1327
|
+
company?: string;
|
|
1328
|
+
/** Shows the external party who created the record. */
|
|
1329
|
+
createdbyexternalparty?: string;
|
|
1330
|
+
/** GUID of the related record */
|
|
1331
|
+
_createdbyexternalparty_value?: string;
|
|
1332
|
+
createdbyname?: string;
|
|
1333
|
+
createdbyyominame?: string;
|
|
1334
|
+
createdonbehalfbyname?: string;
|
|
1335
|
+
createdonbehalfbyyominame?: string;
|
|
1336
|
+
/** Type the credit limit of the contact for reference when you address invoice and accounting issues with the customer. */
|
|
1337
|
+
creditlimit?: number;
|
|
1338
|
+
/** Shows the Credit Limit field converted to the system's default base currency for reporting purposes. The calculations use the exchange rate specified in the Currencies area. */
|
|
1339
|
+
creditlimit_base?: number;
|
|
1340
|
+
/** Select whether the contact is on a credit hold, for reference when addressing invoice and accounting issues. */
|
|
1341
|
+
creditonhold?: boolean;
|
|
1342
|
+
/** Select the size of the contact's company for segmentation and reporting purposes. */
|
|
1343
|
+
customersizecode?: number;
|
|
1344
|
+
/** Display label for customersizecode */
|
|
1345
|
+
customersizecode_label?: string;
|
|
1346
|
+
/** Select the category that best describes the relationship between the contact and your organization. */
|
|
1347
|
+
customertypecode?: number;
|
|
1348
|
+
/** Display label for customertypecode */
|
|
1349
|
+
customertypecode_label?: string;
|
|
1350
|
+
/** Choose the default price list associated with the contact to make sure the correct product prices for this customer are applied in sales opportunities, quotes, and orders. */
|
|
1351
|
+
defaultpricelevelid?: string;
|
|
1352
|
+
/** GUID of the related record */
|
|
1353
|
+
_defaultpricelevelid_value?: string;
|
|
1354
|
+
/** Type the department or business unit where the contact works in the parent company or business. */
|
|
1355
|
+
department?: string;
|
|
1356
|
+
/** Type additional information to describe the contact, such as an excerpt from the company's website. */
|
|
1357
|
+
description?: string;
|
|
1358
|
+
/** Select whether the contact accepts bulk email sent through marketing campaigns or quick campaigns. If Do Not Allow is selected, the contact can be added to marketing lists, but will be excluded from the email. */
|
|
1359
|
+
donotbulkemail?: boolean;
|
|
1360
|
+
/** Select whether the contact accepts bulk postal mail sent through marketing campaigns or quick campaigns. If Do Not Allow is selected, the contact can be added to marketing lists, but will be excluded from the letters. */
|
|
1361
|
+
donotbulkpostalmail?: boolean;
|
|
1362
|
+
/** Select whether the contact allows direct email sent from Microsoft Dynamics 365. If Do Not Allow is selected, Microsoft Dynamics 365 will not send the email. */
|
|
1363
|
+
donotemail?: boolean;
|
|
1364
|
+
/** Select whether the contact allows faxes. If Do Not Allow is selected, the contact will be excluded from any fax activities distributed in marketing campaigns. */
|
|
1365
|
+
donotfax?: boolean;
|
|
1366
|
+
/** Select whether the contact accepts phone calls. If Do Not Allow is selected, the contact will be excluded from any phone call activities distributed in marketing campaigns. */
|
|
1367
|
+
donotphone?: boolean;
|
|
1368
|
+
/** Select whether the contact allows direct mail. If Do Not Allow is selected, the contact will be excluded from letter activities distributed in marketing campaigns. */
|
|
1369
|
+
donotpostalmail?: boolean;
|
|
1370
|
+
/** Select whether the contact accepts marketing materials, such as brochures or catalogs. Contacts that opt out can be excluded from marketing initiatives. */
|
|
1371
|
+
donotsendmm?: boolean;
|
|
1372
|
+
/** Select the contact's highest level of education for use in segmentation and analysis. */
|
|
1373
|
+
educationcode?: number;
|
|
1374
|
+
/** Display label for educationcode */
|
|
1375
|
+
educationcode_label?: string;
|
|
1376
|
+
/** Type the secondary email address for the contact. */
|
|
1377
|
+
emailaddress2?: string;
|
|
1378
|
+
/** Type an alternate email address for the contact. */
|
|
1379
|
+
emailaddress3?: string;
|
|
1380
|
+
/** Type the employee ID or number for the contact for reference in orders, service cases, or other communications with the contact's organization. */
|
|
1381
|
+
employeeid?: string;
|
|
1382
|
+
/** Shows the default image for the record. */
|
|
1383
|
+
entityimage?: string;
|
|
1384
|
+
entityimage_timestamp?: number;
|
|
1385
|
+
entityimage_url?: string;
|
|
1386
|
+
/** For internal use only. */
|
|
1387
|
+
entityimageid?: string;
|
|
1388
|
+
/** Identifier for an external user. */
|
|
1389
|
+
externaluseridentifier?: string;
|
|
1390
|
+
/** Select the marital status of the contact for reference in follow-up phone calls and other communications. */
|
|
1391
|
+
familystatuscode?: number;
|
|
1392
|
+
/** Display label for familystatuscode */
|
|
1393
|
+
familystatuscode_label?: string;
|
|
1394
|
+
/** Type the fax number for the contact. */
|
|
1395
|
+
fax?: string;
|
|
1396
|
+
/** Information about whether to allow following email activity like opens, attachment views and link clicks for emails sent to the contact. */
|
|
1397
|
+
followemail?: boolean;
|
|
1398
|
+
/** Type the URL for the contact's FTP site to enable users to access data and share documents. */
|
|
1399
|
+
ftpsiteurl?: string;
|
|
1400
|
+
/** Select the contact's gender to make sure the contact is addressed correctly in sales calls, email, and marketing campaigns. */
|
|
1401
|
+
gendercode?: number;
|
|
1402
|
+
/** Display label for gendercode */
|
|
1403
|
+
gendercode_label?: string;
|
|
1404
|
+
/** Type the passport number or other government ID for the contact for use in documents or reports. */
|
|
1405
|
+
governmentid?: string;
|
|
1406
|
+
/** Select whether the contact has any children for reference in follow-up phone calls and other communications. */
|
|
1407
|
+
haschildrencode?: number;
|
|
1408
|
+
/** Display label for haschildrencode */
|
|
1409
|
+
haschildrencode_label?: string;
|
|
1410
|
+
/** Type a second home phone number for this contact. */
|
|
1411
|
+
home2?: string;
|
|
1412
|
+
/** Information about whether the contact was auto-created when promoting an email or an appointment. */
|
|
1413
|
+
isautocreate?: boolean;
|
|
1414
|
+
/** Select whether the contact exists in a separate accounting or other system, such as Microsoft Dynamics GP or another ERP database, for use in integration processes. */
|
|
1415
|
+
isbackofficecustomer?: boolean;
|
|
1416
|
+
isprivate?: boolean;
|
|
1417
|
+
/** Contains the date and time stamp of the last on hold time. */
|
|
1418
|
+
lastonholdtime?: string;
|
|
1419
|
+
/** Shows the date when the contact was last included in a marketing campaign or quick campaign. */
|
|
1420
|
+
lastusedincampaign?: string;
|
|
1421
|
+
/** Select the primary marketing source that directed the contact to your organization. */
|
|
1422
|
+
leadsourcecode?: number;
|
|
1423
|
+
/** Display label for leadsourcecode */
|
|
1424
|
+
leadsourcecode_label?: string;
|
|
1425
|
+
/** Type the name of the contact's manager for use in escalating issues or other follow-up communications with the contact. */
|
|
1426
|
+
managername?: string;
|
|
1427
|
+
/** Type the phone number for the contact's manager. */
|
|
1428
|
+
managerphone?: string;
|
|
1429
|
+
/** Whether is only for marketing */
|
|
1430
|
+
marketingonly?: boolean;
|
|
1431
|
+
/** Unique identifier of the master contact for merge. */
|
|
1432
|
+
masterid?: string;
|
|
1433
|
+
/** GUID of the related contact */
|
|
1434
|
+
_masterid_value?: string;
|
|
1435
|
+
/** Shows whether the account has been merged with a master contact. */
|
|
1436
|
+
merged?: boolean;
|
|
1437
|
+
/** Type the contact's middle name or initial to make sure the contact is addressed correctly. */
|
|
1438
|
+
middlename?: string;
|
|
1439
|
+
/** Shows the external party who modified the record. */
|
|
1440
|
+
modifiedbyexternalparty?: string;
|
|
1441
|
+
/** GUID of the related record */
|
|
1442
|
+
_modifiedbyexternalparty_value?: string;
|
|
1443
|
+
modifiedbyname?: string;
|
|
1444
|
+
modifiedbyyominame?: string;
|
|
1445
|
+
/** Shows the date and time when the record was last updated. The date and time are displayed in the time zone selected in Microsoft Dynamics 365 options. */
|
|
1446
|
+
modifiedon?: string;
|
|
1447
|
+
modifiedonbehalfbyname?: string;
|
|
1448
|
+
modifiedonbehalfbyyominame?: string;
|
|
1449
|
+
/** Unique identifier for Account associated with Contact. */
|
|
1450
|
+
msa_managingpartnerid?: string;
|
|
1451
|
+
/** GUID of the related account */
|
|
1452
|
+
_msa_managingpartnerid_value?: string;
|
|
1453
|
+
/** Maps to contact KPI records */
|
|
1454
|
+
msdyn_contactkpiid?: string;
|
|
1455
|
+
/** GUID of the related record */
|
|
1456
|
+
_msdyn_contactkpiid_value?: string;
|
|
1457
|
+
/** Indicate buying influence using labels */
|
|
1458
|
+
msdyn_decisioninfluencetag?: number;
|
|
1459
|
+
/** Display label for msdyn_decisioninfluencetag */
|
|
1460
|
+
msdyn_decisioninfluencetag_label?: string;
|
|
1461
|
+
/** Indicates that the contact has opted out of web tracking. */
|
|
1462
|
+
msdyn_disablewebtracking?: boolean;
|
|
1463
|
+
/** Describes whether contact is opted out or not */
|
|
1464
|
+
msdyn_gdproptout?: boolean;
|
|
1465
|
+
/** Describes if the contact is an assistant in org chart */
|
|
1466
|
+
msdyn_isassistantinorgchart?: boolean;
|
|
1467
|
+
/** This field represents if a bookable resource should be created associated with the contact. */
|
|
1468
|
+
msdyn_iscreatebookableresourceenabled?: boolean;
|
|
1469
|
+
/** Indicates that the contact is considered a minor in their jurisdiction. */
|
|
1470
|
+
msdyn_isminor?: boolean;
|
|
1471
|
+
/** Indicates that the contact is considered a minor in their jurisdiction and has parental consent. */
|
|
1472
|
+
msdyn_isminorwithparentalconsent?: boolean;
|
|
1473
|
+
/** Whether or not the contact belongs to the associated account */
|
|
1474
|
+
msdyn_orgchangestatus?: number;
|
|
1475
|
+
/** Display label for msdyn_orgchangestatus */
|
|
1476
|
+
msdyn_orgchangestatus_label?: string;
|
|
1477
|
+
/** Indicates the date and time that the person agreed to the portal terms and conditions. */
|
|
1478
|
+
msdyn_portaltermsagreementdate?: string;
|
|
1479
|
+
/** Indicates the primary time zone that the contact works on. */
|
|
1480
|
+
msdyn_primarytimezone?: number;
|
|
1481
|
+
/** Unique identifier for Segment associated with contact. */
|
|
1482
|
+
msdyn_segmentid?: string;
|
|
1483
|
+
/** GUID of the related record */
|
|
1484
|
+
_msdyn_segmentid_value?: string;
|
|
1485
|
+
/** This field represents the timezone of the bookable resource to be created associated with the contact. */
|
|
1486
|
+
msdyn_timezone?: number;
|
|
1487
|
+
/** User’s preferred portal language */
|
|
1488
|
+
mspp_userpreferredlcid?: number;
|
|
1489
|
+
/** Display label for mspp_userpreferredlcid */
|
|
1490
|
+
mspp_userpreferredlcid_label?: string;
|
|
1491
|
+
/** Type the contact's nickname. */
|
|
1492
|
+
nickname?: string;
|
|
1493
|
+
/** Type the number of children the contact has for reference in follow-up phone calls and other communications. */
|
|
1494
|
+
numberofchildren?: number;
|
|
1495
|
+
/** Shows how long, in minutes, that the record was on hold. */
|
|
1496
|
+
onholdtime?: number;
|
|
1497
|
+
/** Shows the lead that the contact was created if the contact was created by converting a lead in Microsoft Dynamics 365. This is used to relate the contact to the data on the originating lead for use in reporting and analytics. */
|
|
1498
|
+
originatingleadid?: string;
|
|
1499
|
+
/** GUID of the related record */
|
|
1500
|
+
_originatingleadid_value?: string;
|
|
1501
|
+
/** Enter the user or team who is assigned to manage the record. This field is updated every time the record is assigned to a different user. */
|
|
1502
|
+
ownerid?: string;
|
|
1503
|
+
/** GUID of the related record */
|
|
1504
|
+
_ownerid_value?: string;
|
|
1505
|
+
owneridtype?: string;
|
|
1506
|
+
owningbusinessunitname?: string;
|
|
1507
|
+
/** Type the pager number for the contact. */
|
|
1508
|
+
pager?: string;
|
|
1509
|
+
/** For internal use only */
|
|
1510
|
+
parent_contactid?: string;
|
|
1511
|
+
/** GUID of the related contact */
|
|
1512
|
+
_parent_contactid_value?: string;
|
|
1513
|
+
/** Unique identifier of the parent contact. */
|
|
1514
|
+
parentcontactid?: string;
|
|
1515
|
+
/** GUID of the related contact */
|
|
1516
|
+
_parentcontactid_value?: string;
|
|
1517
|
+
/** Parent Customer Type */
|
|
1518
|
+
parentcustomeridtype?: string;
|
|
1519
|
+
/** Shows whether the contact participates in workflow rules. */
|
|
1520
|
+
participatesinworkflow?: boolean;
|
|
1521
|
+
/** Select the payment terms to indicate when the customer needs to pay the total amount. */
|
|
1522
|
+
paymenttermscode?: number;
|
|
1523
|
+
/** Display label for paymenttermscode */
|
|
1524
|
+
paymenttermscode_label?: string;
|
|
1525
|
+
/** Select the preferred day of the week for service appointments. */
|
|
1526
|
+
preferredappointmentdaycode?: number;
|
|
1527
|
+
/** Display label for preferredappointmentdaycode */
|
|
1528
|
+
preferredappointmentdaycode_label?: string;
|
|
1529
|
+
/** Select the preferred time of day for service appointments. */
|
|
1530
|
+
preferredappointmenttimecode?: number;
|
|
1531
|
+
/** Display label for preferredappointmenttimecode */
|
|
1532
|
+
preferredappointmenttimecode_label?: string;
|
|
1533
|
+
/** Select the preferred method of contact. */
|
|
1534
|
+
preferredcontactmethodcode?: number;
|
|
1535
|
+
/** Display label for preferredcontactmethodcode */
|
|
1536
|
+
preferredcontactmethodcode_label?: string;
|
|
1537
|
+
/** Choose the contact's preferred service facility or equipment to make sure services are scheduled correctly for the customer. */
|
|
1538
|
+
preferredequipmentid?: string;
|
|
1539
|
+
/** GUID of the related record */
|
|
1540
|
+
_preferredequipmentid_value?: string;
|
|
1541
|
+
/** Choose the contact's preferred service to make sure services are scheduled correctly for the customer. */
|
|
1542
|
+
preferredserviceid?: string;
|
|
1543
|
+
/** GUID of the related record */
|
|
1544
|
+
_preferredserviceid_value?: string;
|
|
1545
|
+
/** Choose the regular or preferred customer service representative for reference when scheduling service activities for the contact. */
|
|
1546
|
+
preferredsystemuserid?: string;
|
|
1547
|
+
/** GUID of the related record */
|
|
1548
|
+
_preferredsystemuserid_value?: string;
|
|
1549
|
+
/** Type the salutation of the contact to make sure the contact is addressed correctly in sales calls, email messages, and marketing campaigns. */
|
|
1550
|
+
salutation?: string;
|
|
1551
|
+
/** Select a shipping method for deliveries sent to this address. */
|
|
1552
|
+
shippingmethodcode?: number;
|
|
1553
|
+
/** Display label for shippingmethodcode */
|
|
1554
|
+
shippingmethodcode_label?: string;
|
|
1555
|
+
/** Choose the service level agreement (SLA) that you want to apply to the Contact record. */
|
|
1556
|
+
slaid?: string;
|
|
1557
|
+
/** GUID of the related record */
|
|
1558
|
+
_slaid_value?: string;
|
|
1559
|
+
/** Last SLA that was applied to this case. This field is for internal use only. */
|
|
1560
|
+
slainvokedid?: string;
|
|
1561
|
+
/** GUID of the related record */
|
|
1562
|
+
_slainvokedid_value?: string;
|
|
1563
|
+
slaname?: string;
|
|
1564
|
+
/** Type the name of the contact's spouse or partner for reference during calls, events, or other communications with the contact. */
|
|
1565
|
+
spousesname?: string;
|
|
1566
|
+
/** Select the contact's status. */
|
|
1567
|
+
statuscode?: number;
|
|
1568
|
+
/** Display label for statuscode */
|
|
1569
|
+
statuscode_label?: string;
|
|
1570
|
+
/** For internal use only. */
|
|
1571
|
+
subscriptionid?: string;
|
|
1572
|
+
/** Type the suffix used in the contact's name, such as Jr. or Sr. to make sure the contact is addressed correctly in sales calls, email, and marketing campaigns. */
|
|
1573
|
+
suffix?: string;
|
|
1574
|
+
/** Number of users or conversations followed the record */
|
|
1575
|
+
teamsfollowed?: number;
|
|
1576
|
+
/** Type a second phone number for this contact. */
|
|
1577
|
+
telephone2?: string;
|
|
1578
|
+
/** Type a third phone number for this contact. */
|
|
1579
|
+
telephone3?: string;
|
|
1580
|
+
/** Select a region or territory for the contact for use in segmentation and analysis. */
|
|
1581
|
+
territorycode?: number;
|
|
1582
|
+
/** Display label for territorycode */
|
|
1583
|
+
territorycode_label?: string;
|
|
1584
|
+
/** Total time spent for emails (read and write) and meetings by me in relation to the contact record. */
|
|
1585
|
+
timespentbymeonemailandmeetings?: string;
|
|
1586
|
+
tn_emergencycontactname?: string;
|
|
1587
|
+
tn_emergencycontactphone?: string;
|
|
1588
|
+
tn_inductioncompleted?: boolean;
|
|
1589
|
+
tn_proofofrighttowork?: boolean;
|
|
1590
|
+
tn_reviewdueon?: string;
|
|
1591
|
+
tn_signedcontractrecieved?: boolean;
|
|
1592
|
+
tn_terminationdate?: string;
|
|
1593
|
+
/** Type the contact's professional or personal website or blog URL. */
|
|
1594
|
+
websiteurl?: string;
|
|
1595
|
+
/** Type the phonetic spelling of the contact's first name, if the name is specified in Japanese, to make sure the name is pronounced correctly in phone calls with the contact. */
|
|
1596
|
+
yomifirstname?: string;
|
|
1597
|
+
/** Shows the combined Yomi first and last names of the contact so that the full phonetic name can be displayed in views and reports. */
|
|
1598
|
+
yomifullname?: string;
|
|
1599
|
+
/** Type the phonetic spelling of the contact's last name, if the name is specified in Japanese, to make sure the name is pronounced correctly in phone calls with the contact. */
|
|
1600
|
+
yomilastname?: string;
|
|
1601
|
+
/** Type the phonetic spelling of the contact's middle name, if the name is specified in Japanese, to make sure the name is pronounced correctly in phone calls with the contact. */
|
|
1602
|
+
yomimiddlename?: string;
|
|
1603
|
+
}
|
|
1604
|
+
/** All valid table names accepted by the API */
|
|
1605
|
+
export type TableName = "incident" | "msdyn_project" | "account" | "casenotes" | "contact" | "case" | "cases" | "project" | "casenote";
|
|
1606
|
+
//# sourceMappingURL=tables.generated.d.ts.map
|