scheunemann-interfaces
Version:
Interfaces de Projetos Scheunemann
21 lines (20 loc) • 532 B
TypeScript
import { IBase } from '../../general';
import { EMemberRules, EMemberType } from '../enums';
export interface IMember extends IBase {
companyName: string;
containerName: string;
email: string;
name: string;
partnerId: string;
internationalCode: string;
phoneNumber: string;
phoneNumberVerified: boolean;
phoneNumberVerifiedAt: Date | null;
photoUrl: string;
rule: EMemberRules;
type: EMemberType;
tags: string[];
uid: string;
companyId: string;
containerId: string;
}