n8n/packages/nodes-base/nodes/Salesforce/OpportunityInterface.ts
Ricardo Espinoza 63a459ac92
Add filters to all getAll operations to Salesforce Node (#1292)
*  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>
2021-01-13 10:45:41 +01:00

17 lines
332 B
TypeScript

export interface IOpportunity {
Name?: string;
StageName?: string;
CloseDate?: string;
Type?: string;
Amount?: number;
OwnerId?: string;
NextStep?: string;
AccountId?: string;
CampaignId?: string;
LeadSource?: string;
Description?: string;
Probability?: number;
Pricebook2Id?: string;
ForecastCategoryName?: string;
}