mobyo-interfaces
Version:
Interfaces de Projetos Mobyo
20 lines (19 loc) • 581 B
TypeScript
import { PayioPermissionEntity } from '../../permissions';
import { IPayioPartner } from '../interfaces/i-partner';
export declare class PayioPartnerEntity implements 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: PayioPermissionEntity[];
tags: string[];
updated: Date;
userId: string;
constructor(data?: Partial<PayioPartnerEntity>);
}