org.models.recipient ==================== .. py:module:: org.models.recipient Classes ------- .. autoapisummary:: org.models.recipient.ResourceRecipient org.models.recipient.ResourceRecipientCollection Module Contents --------------- .. py:class:: ResourceRecipient Bases: :py:obj:`onegov.recipient.GenericRecipient` A generic recipient class with polymorphic support. .. py:attribute:: __mapper_args__ .. py:attribute:: daily_reservations :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:attribute:: new_reservations :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:attribute:: internal_notes :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:attribute:: send_on :type: onegov.core.orm.mixins.dict_property[list[str] | None] .. py:attribute:: rejected_reservations :type: onegov.core.orm.mixins.dict_property[bool | None] .. py:attribute:: resources :type: onegov.core.orm.mixins.dict_property[list[str] | None] .. py:class:: ResourceRecipientCollection(session: sqlalchemy.orm.Session) Bases: :py:obj:`onegov.recipient.GenericRecipientCollection`\ [\ :py:obj:`ResourceRecipient`\ ] Abstract base class for generic types. A generic type is typically declared by inheriting from this class parameterized with one or more type variables. For example, a generic mapping type might be defined as:: class Mapping(Generic[KT, VT]): def __getitem__(self, key: KT) -> VT: ... # Etc. This class can then be used as follows:: def lookup_name(mapping: Mapping[KT, VT], key: KT, default: VT) -> VT: try: return mapping[key] except KeyError: return default