mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
63a459ac92
* ⚡ Add filters to all get:All operations * ⚡ Small fix * ⚡Add description to condition fields * ⚡ Minor improvements to Salesforce-Node Co-authored-by: Harshil <ghagrawal17@gmail.com> Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
27 lines
570 B
TypeScript
27 lines
570 B
TypeScript
export interface IAccount {
|
|
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;
|
|
}
|