UNPKG

cannoli-interfaces

Version:
14 lines (13 loc) 501 B
import { EDocType } from '../../general'; import { ISubscriptionCustomerProfile } from '../interfaces/i-subscription-customer'; export declare class SubscriptionCustomerProfileEntity implements ISubscriptionCustomerProfile { doc: string | null; docType: EDocType; email: string | null; id: string | null; imageUrl: string | null; name: string | null; phoneNumber: string | null; uid: string | null; constructor(data?: Partial<SubscriptionCustomerProfileEntity>); }