Advertisement
Guest User

Untitled

a guest
May 25th, 2017
68
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. getParkingsPantry() => // ответ с данными по каждому корпусу
  2.     request: {
  3.         "short": true
  4.     }
  5.  
  6.     response: [{
  7.         "housing": 7,
  8.         "parkings": 456,
  9.         "pantries": 5430,
  10.         "salesStart": "2, 2018"
  11.     }, {
  12.         "housing": 8,
  13.         "parkings": 456,
  14.         "pantries": 5430,
  15.         "salesStart": "2, 2018"
  16.     }]
  17.    
  18.     ================================
  19.     request: {} // без аргументов, список всех парковок, кладовых
  20.  
  21.     response: [{
  22.         "id": "1312323", // id по которому можно будет сделать запрос в getParkingById/getPantryById и будет являться урлом
  23.         "type": 0, // 0 - парковочное место, 1 - кладовая
  24.         "status": 4, // 4 и 8 свободно, Остальные - продано,
  25.         "number": "537",
  26.         "level": "-1",
  27.         "housing": 7,
  28.         "area": "12",
  29.         "fullPrice": 428400,
  30.     }, {
  31.         "id": "1312324",
  32.         "type": 1,
  33.         "status": 4, // 4 и 8 свободно, Остальные - продано,
  34.         "number": "537",
  35.         "level": "-2",
  36.         "housing": 7,
  37.         "area": "12",
  38.         "fullPrice": 428400,
  39.     }]
  40.    
  41.  
  42. getParkingById() =>
  43.     request: {
  44.         "id": 138
  45.     }
  46.  
  47.     response: {
  48.         "area": 56,
  49.         "size": [5, 2.5], // length, width
  50.         "housing": 8,
  51.         "fullPrice": 35428400,
  52.         "pdfURL": "http://document.pdf",
  53.         "preview": "http://image.jpg",
  54.         "salesStart": "1, 2017",
  55.         "number": 355,
  56.         "specialOffers": [{
  57.                 "text": "До конца апреля скидка 18 % на все квартиры и апартаменты",
  58.                 "icon": "percent"
  59.             }],
  60.     }
  61.  
  62. getPantryById() =>
  63.     request: {
  64.         "id": 138
  65.     }
  66.    
  67.     response: {
  68.         "area": 5,
  69.         "housing": 8,
  70.         "fullPrice": 248400,
  71.         "pdfURL": "http://document.pdf",
  72.         "preview": "http://image.jpg",
  73.         "pricePerMeter": 130445,
  74.         "salesStart": "1, 2017",
  75.         "number": 355,
  76.         "specialOffers": [{
  77.                 "text": "До конца апреля скидка 18 % на все квартиры и апартаменты",
  78.                 "icon": "percent"
  79.             }],
  80.     }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement