cecon-interfaces
Version:
Interfaces de Projetos Cecon
14 lines (13 loc) • 432 B
TypeScript
import { IGlobalSettingFirebank } from '../interfaces/i-global-setting-firebank';
export declare class GlobalSettingFirebankEntity implements IGlobalSettingFirebank {
active: boolean;
apiKey: string;
baseUrl: string;
basicAuth64: string;
fee: number;
feeMode: 'PERCENTAGE' | 'FIXED';
id: string;
password: string;
userName: string;
constructor(data?: Partial<GlobalSettingFirebankEntity>);
}