UNPKG

scheunemann-interfaces

Version:
15 lines (14 loc) 482 B
import { EMemberType } from '../../member'; import { TokenEntity } from '../../token'; import { ICustomerInfo } from '../interfaces/i-customer-info'; export declare class CustomerInfoEntity implements ICustomerInfo { tokenId: string | null; customerId: string; name: string | null; email: string | null; phoneNumber: string | null; type: EMemberType; emailVerified: boolean; emailVerifiedAt: Date | null; constructor(req?: TokenEntity | null); }