org.models.clipboard ==================== .. py:module:: org.models.clipboard Classes ------- .. autoapisummary:: org.models.clipboard.Clipboard Module Contents --------------- .. py:class:: Clipboard(request: onegov.org.request.OrgRequest, token: str) The clipboard holds a url that should be copied and then pasted. The url is expected to be stored in a token that has been created by :meth:`onegov.core.request.CoreRequest.new_url_safe_token`. The reason behind this is that the url is used to fetch the object behind the url in an unrestricted fashion. .. py:attribute:: request .. py:attribute:: token .. py:property:: url :type: str | None .. py:method:: get_object() -> Any | None .. py:method:: clear() -> None .. py:method:: store_in_session() -> None .. py:method:: from_url(request: onegov.org.request.OrgRequest, url: str) -> Self :classmethod: .. py:method:: from_session(request: onegov.org.request.OrgRequest) -> Self :classmethod: