election_day.models.election.list_connection ============================================ .. py:module:: election_day.models.election.list_connection Classes ------- .. autoapisummary:: election_day.models.election.list_connection.ListConnection Module Contents --------------- .. py:class:: ListConnection Bases: :py:obj:`onegov.core.orm.Base`, :py:obj:`onegov.core.orm.mixins.TimestampMixin` A list connection. .. py:attribute:: __tablename__ :value: 'list_connections' .. py:attribute:: id :type: sqlalchemy.Column[uuid.UUID] .. py:attribute:: connection_id :type: sqlalchemy.Column[str] .. py:attribute:: election_id :type: sqlalchemy.Column[str | None] .. py:attribute:: election :type: sqlalchemy.orm.relationship[onegov.election_day.models.ProporzElection] .. py:attribute:: parent_id :type: sqlalchemy.Column[uuid.UUID | None] .. py:attribute:: parent :type: sqlalchemy.orm.relationship[ListConnection] .. py:attribute:: lists :type: sqlalchemy.orm.relationship[list[onegov.election_day.models.election.list.List]] .. py:attribute:: children :type: sqlalchemy.orm.relationship[onegov.core.types.AppenderQuery[ListConnection]] .. py:property:: total_votes :type: int Returns the total number of votes. .. py:property:: total_number_of_mandates :type: int Returns the total number of mandates. .. py:attribute:: votes .. py:attribute:: number_of_mandates .. py:method:: aggregate_results(attribute: str) -> int Gets the sum of the given attribute from the results. .. py:method:: aggregate_results_expression(attribute: str) -> sqlalchemy.sql.ColumnElement[int] :classmethod: Gets the sum of the given attribute from the results, as SQL expression.