18 lines
353 B
TypeScript
Executable File
18 lines
353 B
TypeScript
Executable File
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;
|
|
}
|