cecon-interfaces
Version:
Interfaces de Projetos Cecon
21 lines (20 loc) • 529 B
TypeScript
import { IPayioPermission } from '../../permissions';
export interface IPayioMember {
accessCount: number | null;
active: boolean;
companyId: string;
companyName: string;
containerId: string | null;
createdAt: Date;
id: string;
imageUrl: string | null;
lastAccessAt: Date | null;
name: string;
password?: string | undefined;
member_code?: string | undefined;
permissions: IPayioPermission[];
sandbox: boolean;
tags: string[];
updatedAt: Date;
userId: string;
}