UNPKG

640 BTypeScriptView Raw
1import { OrderForm, Restrictions } from '@vendasta/core/marketplace-apps';
2export declare class ResellerItem {
3 appId?: string;
4 addonId?: string;
5 name?: string;
6 icon?: string;
7 tagline?: string;
8 headerImage?: string;
9 currency?: string;
10 price?: number;
11 billingFrequency?: string;
12 lmiCategories?: string[];
13 enabled: boolean;
14 isCustom: boolean;
15 orderForm?: OrderForm;
16 quantity: number;
17 allowMultipleActivations: boolean;
18 usesCustomizationForm: boolean;
19 entryUrl: string;
20 restrictions?: Restrictions;
21 activationRequiresApproval?: boolean;
22 constructor(data?: any);
23}