cecon-interfaces
Version:
Interfaces de Projetos Cecon
24 lines (23 loc) • 707 B
TypeScript
import { IGlobalSettingFirebank } from '../interfaces/i-global-setting-firebank';
export declare class GlobalSettingFirebankEntity implements IGlobalSettingFirebank {
access_token: string;
active: boolean;
apiKey: string;
baseUrl: string;
basicAuth64: string;
certificate: string;
clientId: string;
clientSecret: string;
expires_in: number;
fee: number;
feeMode: 'PERCENTAGE' | 'FIXED';
id: string;
password: string;
token_type: string;
userName: string;
withDrawScheduledTax: number;
withDrawTax: number;
withdrawAutoInterval: number;
withdrawAutoMaxAmount: number;
constructor(data?: Partial<GlobalSettingFirebankEntity>);
}