UNPKG

mobyo-interfaces

Version:
19 lines (18 loc) 456 B
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; permissions: IPayioPermission[]; sandbox: boolean; tags: string[]; updatedAt: Date; userId: string; }