scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
12 lines (11 loc) • 440 B
TypeScript
import { ICustomerInfo } from '../../master-setting';
import { ISubscriptionBase } from '../../subscription-base';
import { ICustomerCreditLimit } from './i-customer-credit-limit';
export interface ISubscriptionCustomer extends ISubscriptionBase {
customerCreditLimit: ICustomerCreditLimit[];
customerId: string | null;
profile: ICustomerInfo;
planName: string;
emailsNotification: string[];
renewedCount: number;
}