mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
cfd32d2642
* 🔥 Remove TSLint scripts * 🔥 Remove TSLint config * 🔥 Remove TSLint exceptions * 👕 Adjust lint config * ✏️ Add story numbers
18 lines
353 B
TypeScript
18 lines
353 B
TypeScript
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;
|
|
}
|