Files
Agent-n8n/n8n-n8n-1.109.2/packages/nodes-base/nodes/Salesforce/OpportunityInterface.ts

18 lines
353 B
TypeScript
Raw Normal View History

2025-09-08 04:48:28 +08:00
export interface IOpportunity {
[key: string]: any;
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;
}