n8n/packages/nodes-base/nodes/Salesforce/OpportunityInterface.ts

17 lines
332 B
TypeScript
Raw Normal View History

2020-02-10 12:55:28 -08:00
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;
2020-02-10 12:55:28 -08:00
ForecastCategoryName?: string;
}