[IMP] pms-api-rest: add notif. rt capacity

This commit is contained in:
miguelpadin
2021-12-28 19:38:34 +01:00
committed by Darío Lodeiros
parent c3fc102f0e
commit d54344c373
4 changed files with 5 additions and 1 deletions

View File

@@ -13,3 +13,4 @@ class PmsCalendarInfo(Datamodel):
isFirstDay = fields.Boolean(required=False, allow_none=True)
isLastDay = fields.Boolean(required=False, allow_none=True)
totalPrice = fields.Float(required=False, allow_none=True)
numNotifications = fields.Integer(required=False, allow_none=True)

View File

@@ -8,3 +8,4 @@ class PmsRoomInfo(Datamodel):
id = fields.Integer(required=False, allow_none=True)
name = fields.String(required=False, allow_none=True)
roomTypeId = fields.Integer(required=False, allow_none=True)
capacity = fields.Integer(required=False, allow_none=True)