/* tslint:disable */ /* eslint-disable */ /** * loanproducts * 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. */ // May contain unused imports in some cases // @ts-ignore import type { IntegerIntervalConstraints } from './integer-interval-constraints'; /** * The funding settings, holds the settings regarding the funding for the loan product. */ export interface GracePeriodSettings { gracePeriod?: IntegerIntervalConstraints; /** * The grace period type for a loan account. */ gracePeriodType?: GracePeriodSettingsGracePeriodTypeEnum; } export const GracePeriodSettingsGracePeriodTypeEnum = { None: 'NONE', PayInterestOnly: 'PAY_INTEREST_ONLY', InterestForgiveness: 'INTEREST_FORGIVENESS', } as const; export type GracePeriodSettingsGracePeriodTypeEnum = (typeof GracePeriodSettingsGracePeriodTypeEnum)[keyof typeof GracePeriodSettingsGracePeriodTypeEnum];