file.models.fileset =================== .. py:module:: file.models.fileset Attributes ---------- .. autoapisummary:: file.models.fileset.file_to_set_associations Classes ------- .. autoapisummary:: file.models.fileset.FileSet Module Contents --------------- .. py:data:: file_to_set_associations .. py:class:: FileSet Bases: :py:obj:`onegov.core.orm.Base`, :py:obj:`onegov.core.orm.mixins.ContentMixin`, :py:obj:`onegov.core.orm.mixins.TimestampMixin` A set of files that belong together. Each file may be part of none, one or many sets. Each set may containe none, one or many files. The fileset uses uuids for public urls instead of a readable url-safe name, because files are meant to be always public with an unguessable url, and so the filesets containing files must also have the same property. Otherwise we might not be able to guess the name the of the file, but we will be able to guess the name of a fileset containing files. .. py:attribute:: __tablename__ :value: 'filesets' .. py:attribute:: id :type: sqlalchemy.Column[str] .. py:attribute:: title :type: sqlalchemy.Column[str] .. py:attribute:: type :type: sqlalchemy.Column[str] .. py:attribute:: files :type: sqlalchemy.orm.relationship[list[file.models.file.File]] .. py:attribute:: __mapper_args__