UNPKG

1.65 kBTypeScriptView Raw
1import { SalesforceId } from './salesforce-id';
2import { SObjectOptions } from './salesforce-object-options';
3
4export interface SObjectCreateOptions extends SObjectOptions {
5 IsDeleted?: boolean | undefined;
6 MasterRecordId?: SalesforceId | undefined;
7 Name?: string | undefined;
8 Type?: string | undefined;
9 ParentId?: SalesforceId | undefined;
10 BillingStreet?: string | undefined;
11 BillingCity?: string | undefined;
12 BillingState?: string | undefined;
13 BillingPostalCode?: string | undefined;
14 BillingCountry?: string | undefined;
15 BillingLatitude?: number | undefined;
16 BillingLongitude?: number | undefined;
17 ShippingStreet?: string | undefined;
18 ShippingCity?: string | undefined;
19 ShippingState?: string | undefined;
20 ShippingPostalCode?: string | undefined;
21 ShippingCountry?: string | undefined;
22 ShippingLatitude?: number | undefined;
23 ShippingLongitude?: number | undefined;
24 Phone?: string | undefined;
25 Website?: string | undefined;
26 Industry?: string | undefined;
27 NumberOfEmployees?: number | undefined;
28 Description?: string | undefined;
29 OwnerId?: SalesforceId | undefined;
30 CreatedDate?: Date | undefined;
31 CreatedById?: SalesforceId | undefined;
32 LastModifiedDate?: Date | undefined;
33 LastModifiedById?: SalesforceId | undefined;
34 SystemModstamp?: Date | undefined;
35 LastActivityDate?: Date | undefined;
36 LastViewedDate?: Date | undefined;
37 LastReferencedDate?: Date | undefined;
38 Jigsaw?: string | undefined;
39 JigsawCompanyId?: string | undefined;
40 AccountSource?: string | undefined;
41 SicDesc?: string | undefined;
42}