Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import { IType, IYear } from './applicant.entity'
- export interface SimulatorRequest {
- jenis_jaminan: string
- merek: string
- model: IType | string
- tipe: string
- tahun: string | IYear
- flag?: string | null
- flagging?: string | null
- tenor?: string
- plafond?: string | null
- }
- export interface PlafondRequest {
- id_taksasi: string
- }
- export interface ListSimulator {
- jangka_waktu: string
- plafond: string
- angsuran: string
- jenis_kredit: string
- }
- export interface SimulatorResponse {
- taksasi: SimulatorRequest
- rc: string
- description: string
- // url: string
- list: ListSimulator[]
- bulan: string[]
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement