feriennet.collections.occasion_attendees ======================================== .. py:module:: feriennet.collections.occasion_attendees Classes ------- .. autoapisummary:: feriennet.collections.occasion_attendees.ContactInfo feriennet.collections.occasion_attendees.OccasionAttendee feriennet.collections.occasion_attendees.OccasionAttendeeCollection Module Contents --------------- .. py:class:: ContactInfo Bases: :py:obj:`TypedDict` dict() -> new empty dictionary dict(mapping) -> new dictionary initialized from a mapping object's (key, value) pairs dict(iterable) -> new dictionary initialized as if via: d = {} for k, v in iterable: d[k] = v dict(**kwargs) -> new dictionary initialized with the name=value pairs in the keyword argument list. For example: dict(one=1, two=2) .. py:attribute:: emergency :type: str | None .. py:attribute:: email :type: str .. py:attribute:: place :type: str | None .. py:class:: OccasionAttendee Bases: :py:obj:`NamedTuple` .. py:attribute:: attendee :type: onegov.activity.Attendee .. py:attribute:: info :type: ContactInfo .. py:attribute:: group_code :type: str | None .. py:class:: OccasionAttendeeCollection(session: sqlalchemy.orm.Session, period: onegov.activity.models.Period | onegov.activity.models.PeriodMeta, activity: onegov.activity.Activity, username: str | None = None) Bases: :py:obj:`onegov.activity.OccasionCollection` 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 .. py:attribute:: period .. py:attribute:: username :value: None .. py:attribute:: activity .. py:property:: period_id :type: uuid.UUID .. py:property:: activity_name :type: str .. py:method:: for_period(period: onegov.activity.models.Period | onegov.activity.models.PeriodMeta) -> Self .. py:method:: query() -> sqlalchemy.orm.Query[onegov.activity.Occasion] .. py:method:: occasions() -> dict[onegov.activity.Occasion, list[OccasionAttendee]]