Advertisement
kidto1412

simulator

May 19th, 2025
280
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { IType, IYear } from './applicant.entity'
  2.  
  3. export interface SimulatorRequest {
  4.   jenis_jaminan: string
  5.   merek: string
  6.   model: IType | string
  7.   tipe: string
  8.   tahun: string | IYear
  9.   flag?: string | null
  10.   flagging?: string | null
  11.   tenor?: string
  12.   plafond?: string | null
  13. }
  14.  
  15. export interface PlafondRequest {
  16.   id_taksasi: string
  17. }
  18.  
  19. export interface ListSimulator {
  20.   jangka_waktu: string
  21.   plafond: string
  22.   angsuran: string
  23.   jenis_kredit: string
  24. }
  25.  
  26. export interface SimulatorResponse {
  27.   taksasi: SimulatorRequest
  28.   rc: string
  29.   description: string
  30.   // url: string
  31.   list: ListSimulator[]
  32.   bulan: string[]
  33. }
  34.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement