Advertisement
terraplane

Untitled

Aug 2nd, 2022
2,484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Rails 0.71 KB | None | 0 0
  1. transactions = {
  2.   resource_name: 'Онлайн-банк',
  3.   client_data: {
  4.     client_name: 'Герман Оскарович Блокчейн',
  5.     balance: '$123.45',
  6.     transactions: {
  7.       income: [
  8.         {
  9.           operation: 'Зарплата (Компания БЛИЖП)',
  10.           sum: 1000
  11.         },
  12.         {
  13.           operation: 'Продажа ваучера',
  14.           sum: 300
  15.         }
  16.       ]
  17.       expenses: [
  18.         {
  19.           operation: 'Сапоги',
  20.           sum: 40
  21.         },
  22.         {
  23.           operation: 'Велосипед',
  24.           sum: 200
  25.         },
  26.         {
  27.           operation: 'Шоколад',
  28.           sum: 300
  29.         }
  30.       ]
  31.     }
  32.   }
  33. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement