n8n/packages/nodes-base/nodes/Salesforce/ContactInterface.ts
Iván Ovejero cfd32d2642
refactor: Phase out TSLint in nodes-base (no-changelog) (#4798)
* 🔥 Remove TSLint scripts

* 🔥 Remove TSLint config

* 🔥 Remove TSLint exceptions

* 👕 Adjust lint config

* ✏️ Add story numbers
2022-12-02 15:25:21 +01:00

35 lines
745 B
TypeScript

export interface IContact {
[key: string]: any;
LastName?: string;
Fax?: string;
Email?: string;
Phone?: string;
Title?: string;
Jigsaw?: string;
OwnerId?: string;
AccountId?: string;
Birthdate?: string;
FirstName?: string;
HomePhone?: string;
OtherCity?: string;
Department?: string;
LeadSource?: string;
OtherPhone?: string;
OtherState?: string;
Salutation?: string;
Description?: string;
MailingCity?: string;
MobilePhone?: string;
OtherStreet?: string;
MailingState?: string;
OtherCountry?: string;
AssistantName?: string;
MailingStreet?: string;
AssistantPhone?: string;
MailingCountry?: string;
OtherPostalCode?: string;
MailingPostalCode?: string;
EmailBouncedDate?: string;
EmailBouncedReason?: string;
}