n8n/packages/nodes-base/nodes/Salesforce/OpportunityInterface.ts
Ricardo Espinoza 2eaeb4f4c2 salesforce node
2020-02-10 15:55:28 -05:00

18 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;
}