Eunovo

data format

Dec 2nd, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
JSON 0.67 KB | None | 0 0
  1. {
  2.     id: number = 0;
  3.     admin_rate: number = 0;
  4.     rate: number = 0;
  5.     maximum_amount: number = 0;
  6.     minimum_amount: number = 0;
  7.     we_bear_forex_risk: boolean = false;
  8.     interest_up_front: boolean = true;
  9.     direct_debit: boolean = false;
  10.     options: Array<{
  11.         name: string,
  12.         options: Array<{ id: string, text: string }>,
  13.         text: string,
  14.         value: number,
  15.     }>;
  16.     currency: {
  17.         id: number = 0;
  18.     };
  19.     tenor: {
  20.         id: number = 0;
  21.         days: number = 0;
  22.         months: number = 0;
  23.     };
  24.     product: {
  25.         id: number = 0;
  26.         abbreviation: string = '';
  27.         name: string = '';
  28.         allowed_currencies: Array<Currency> = [];
  29.     }
  30. }
Add Comment
Please, Sign In to add comment