Event Type ========== :doc:`Event ` types are what indicate what kind of thing an event is about, such as a birth, death, or marriage. They inherit from :py:class:`betty.model.event_type.EventType`. Event types ----------- :py:class:`betty.model.event_type.Adoption` A person's `adoption `_. :py:class:`betty.model.event_type.Baptism` A person's `baptism `_. :py:class:`betty.model.event_type.Birth` A person's birth. This event type often receives special treatment and is considered the authoritative type to determine when somebody's life started. :py:class:`betty.model.event_type.Burial` A person's `burial `_. :py:class:`betty.model.event_type.Conference` A `conference `_. :py:class:`betty.model.event_type.Confirmation` A `christian confirmation `_. :py:class:`betty.model.event_type.Correspondence` Correspondence between people, such as letters or emails. :py:class:`betty.model.event_type.Cremation` A person's `cremation `_. :py:class:`betty.model.event_type.Death` A person's death. This event type often receives special treatment and is considered the authoritative type to determine when somebody's life ended. :py:class:`betty.model.event_type.Divorce` A person's `divorce `_ from another. :py:class:`betty.model.event_type.DivorceAnnouncement` The public announcement of a person's `divorce `_ from another. :py:class:`betty.model.event_type.Emigration` A person's `emigration `_ from a place. :py:class:`betty.model.event_type.Engagement` A person's `engagement `_ to another. :py:class:`betty.model.event_type.Funeral` A person's `funeral `_. :py:class:`betty.model.event_type.Immigration` A person's `immigration `_ to a place. :py:class:`betty.model.event_type.Marriage` A person's `marriage `_ to another. :py:class:`betty.model.event_type.MarriageAnnouncement` The public announcement of a person's `marriage `_ to another, such as `marriage banns `_. :py:class:`betty.model.event_type.Missing` When someone has become a `missing person `_. :py:class:`betty.model.event_type.Occupation` How a person spends their time in society, such as through employment or education. :py:class:`betty.model.event_type.Residence` A person stayed or lived in a place for some time. :py:class:`betty.model.event_type.Retirement` A person's `retirement `_ from their occupations. :py:class:`betty.model.event_type.UnknownEventType` The event's type is not otherwise known. :py:class:`betty.model.event_type.Will` Any event associated with the reading and excution of someone's `will and testament `_. Meta event types ---------------- The aforementioned event types can inherit from these meta types. For example, births and baptisms are both start-of-life events. :py:class:`betty.model.event_type.StartOfLifeEventType` Any event taking place because of and close to someone's birth, such as a baptism, or an actual birth. :py:class:`betty.model.event_type.DuringLifeEventType` Any event taking place while the subject was still alive, e.g. between their birth and death. :py:class:`betty.model.event_type.EndOfLifeEventType` Any event taking place because of and close to someone's death, such as a funeral, or an actual death. :py:class:`betty.model.event_type.PostDeathEventType` Any event taking place after someone's death, such as a funeral or will reading. :py:class:`betty.model.event_type.FinalDispositionEventType` Any `final disposition `_, such as a burial or cremation.