cecon-interfaces
Version:
Interfaces de Projetos Cecon
9 lines (8 loc) • 331 B
TypeScript
import { IPayioJwtPayloadMachine } from '../interfaces/i-payload-machine';
export declare class PayioJwtPayloadMachineEntity implements IPayioJwtPayloadMachine {
id: number;
name: string | null;
uid: string | null;
settings?: Record<string, string>;
constructor(data?: Partial<PayioJwtPayloadMachineEntity>);
}