cecon-interfaces
Version:
Interfaces de Projetos Cecon
19 lines (18 loc) • 514 B
TypeScript
import { EBarcodeFormat } from '../../chef-config';
import { ETefProvider } from '../enums';
export interface IPayioCashConfigOperation {
barcodeFormat: EBarcodeFormat | null;
/** @deprecated */
tabFormat: string | null;
tef: IPayioCashConfigOperationTef;
pdvId: string;
visionDeviceId: string;
}
export interface IPayioCashConfigOperationTef {
companyNumber: string;
provider: ETefProvider;
terminal: string;
tokenOtp: string;
tokenRegister: string;
url: string;
}