mirror of
https://github.com/OCA/pms.git
synced 2025-01-29 00:17:45 +02:00
11 lines
283 B
Python
11 lines
283 B
Python
from marshmallow import fields
|
|
|
|
from odoo.addons.datamodel.core import Datamodel
|
|
|
|
|
|
class PmsSearchParam(Datamodel):
|
|
_name = "pms.search.param"
|
|
|
|
pmsPropertyId = fields.Integer(required=False, allow_none=True)
|
|
pmsPropertyIds = fields.List(fields.Integer(), required=False)
|