ProductBudget
Structure
Field | Type | Required | Description |
---|---|---|---|
product | Product | true | date. |
productBudgetDailyList | ProductBudgetDaily | false | list of DailyBudget |
productBudgetMonthlyList | ProductBudgetMonthly | false | list of MonthlyBudget |
JSON representation
{ "product": {     "id": 647,     "code": "SGL",     "name": "Single",     "productType": {       "id": 1,       "code": "ACC",       "name": "Accommodation",       "nameI18n": "Accommodation"   }   }, "productBudgetMonthlyList": [],   "productBudgetDailyList": [   {     "date": "2020-01-01",     "price": 0.000000,     "roomNights": 0,     "adult": 0,     "junior": 0,     "child": 0,     "infant": 0   },  ...  ] }