mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
6ade0a00f5
* ⚡ Add upsert operation to various resources (Salesforce) The operation was added to the resources: Contact, Account, Lead, Opportunity and Custom Object. * ⚡ Rename operation create/update to Create or Update * ⚡ Improvements Co-authored-by: Iván Ovejero <ivov.src@gmail.com>
36 lines
782 B
TypeScript
36 lines
782 B
TypeScript
export interface IContact {
|
|
// tslint:disable-next-line: no-any
|
|
[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;
|
|
}
|