scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
15 lines (14 loc) • 482 B
TypeScript
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);
}