cecon-interfaces
Version:
Interfaces de Projetos Cecon
10 lines (9 loc) • 418 B
TypeScript
import { UserEntity } from '../../../users';
import { INatipayUser } from '../interfaces/i-user';
export declare class NatipayUserEntity extends UserEntity implements INatipayUser {
currentCompanyId: string | null;
currentCompanyName: string | null;
currentContainerId?: string | null | undefined;
currentContainerName?: string | null | undefined;
constructor(data?: Partial<NatipayUserEntity>);
}