UNPKG

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