UNPKG

mobyo-interfaces

Version:
18 lines (17 loc) 427 B
import { IPayioPermission } from '../../permissions'; export interface IPayioPartner { accessCount: number | null; active: boolean; companyId: string; companyName: string; containerId: string | null; createdAt: Date; id: string; imageUrl: string | null; lastAccessAt: Date | null; name: string; roles: IPayioPermission[]; tags: string[]; updated: Date; userId: string; }