cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 472 B
TypeScript
import { EDocType } from '../../../general';
import { IPayioJwtPayloadInfo } from '../interfaces/i-payload-info';
export declare class PayioJwtPayloadInfoEntity implements IPayioJwtPayloadInfo {
companyId: string;
companyName: string;
containerId: string | null;
containerName: string | null;
doc: string | null;
docType: EDocType | null;
natipayPix: boolean;
sandbox: boolean;
constructor(data?: Partial<PayioJwtPayloadInfoEntity>);
}