@finapi/finapi-js-loader
Version:
finAPI JS Loader
13 lines (12 loc) • 551 B
TypeScript
import { Properties } from '../types';
export interface ModCreditCheckProperties extends Properties {
/**
* Specifies the URL of a PDF file containing the results. Under typical
* circumstances, when reaching the final view displaying the results, users
* have the option to download the results in PDF format from the Process
* Controller API. If this property is configured, the application will
* directly open the specified URL in a new tab, bypassing the need to query
* the API.
*/
demoPdf?: string;
}