/* tslint:disable */ /* eslint-disable */ /** * configuration/loanproducts.yaml * No description provided (generated by Openapi Generator https://github.com/openapitools/openapi-generator) * * The version of the OpenAPI document: v2 * * * NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech). * https://openapi-generator.tech * Do not edit the class manually. */ /** * The settings and constraints for securities. */ export interface SecuritySettingsConfiguration { /** * Shows whether collateral (assets or other goods) are accepted in order to reach required securities percentage from loan amount, as defined in this product. */ isCollateralEnabled?: boolean; /** * Shows whether guarantors (other clients) are accepted in order to reach the required securities percentage from loan amount, as defined in this product. */ isGuarantorsEnabled?: boolean; /** * The securities percentage from loan amount that is needed in order for this account to be approved. Null if the securities are not required. */ requiredGuaranties?: number; }