@finapi/finapi-js-loader
Version:
finAPI JS Loader
19 lines (18 loc) • 787 B
TypeScript
import { Properties } from '../types';
export interface ModImportProperties extends Properties {
/**
* If you provide the `iban`, the account import will begin with the
* predefined IBAN, and the user will not be able to select any other
* account.
*/
iban?: string;
/**
* The Web Form v2 profile ID allows you to choose a profile for the Web Form.
* Profiles allow for customization of the appearance and behavior of the Web
* Form. For more details, please refer to the white-labeling documentation at
* https://documentation.finapi.io/webform/white-labeling. If no value is
* provided, the default Web Form profile will be used. If a value is
* specified, it must be a valid UUID.
*/
webFormProfileId?: string;
}