mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54: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>
29 lines
628 B
TypeScript
29 lines
628 B
TypeScript
export interface IAccount {
|
|
// tslint:disable-next-line: no-any
|
|
[key: string]: any;
|
|
Name?: string;
|
|
Fax?: string;
|
|
Type?: string;
|
|
Phone?: string;
|
|
Jigsaw?: string;
|
|
OwnerId?: string;
|
|
SicDesc?: string;
|
|
Website?: string;
|
|
Industry?: string;
|
|
ParentId?: string;
|
|
BillingCity?: string;
|
|
Description?: string;
|
|
BillingState?: string;
|
|
ShippingStreet?: string;
|
|
ShippingCity?: string;
|
|
AccountSource?: string;
|
|
AnnualRevenue?: number;
|
|
BillingStreet?: string;
|
|
ShippingState?: string;
|
|
BillingCountry?: string;
|
|
ShippingCountry?: string;
|
|
BillingPostalCode?: string;
|
|
NumberOfEmployees?: string;
|
|
ShippingPostalCode?: string;
|
|
}
|