mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
12 lines
404 B
Python
12 lines
404 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
|
|
class PmsReservationShortInfo(Datamodel):
|
|
_name = "pms.reservation.short.info"
|
|
id = fields.Integer(required=False, allow_none=True)
|
|
price = fields.Float(required=False, allow_none=True)
|
|
checkin = fields.String(required=False, allow_none=True)
|
|
checkout = fields.String(required=False, allow_none=True)
|