:class:`BodyLink` ================= .. py:class:: ansys.speos.core.kernel.body.BodyLink(db, key) Bases: :py:obj:`ansys.speos.core.kernel.crud.CrudItem` Link object for a body in database. :Parameters: **db** : :obj:`ansys.speos.core.kernel.body.BodyStub` Database to link to. **key** : :class:`python:str` Key of the body in the database. .. !! processed by numpydoc !! .. py:currentmodule:: BodyLink Overview -------- .. tab-set:: .. tab-item:: Methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~get` - Get the datamodel from database. * - :py:attr:`~set` - Change datamodel in database. * - :py:attr:`~delete` - Remove datamodel from database. .. tab-item:: Special methods .. list-table:: :header-rows: 0 :widths: auto * - :py:attr:`~__str__` - Return the string representation of the body. Import detail ------------- .. code-block:: python from ansys.speos.core.kernel.body import BodyLink Method detail ------------- .. py:method:: __str__() Return the string representation of the body. .. !! processed by numpydoc !! .. py:method:: get() Get the datamodel from database. :Returns: :obj:`body.Body` Body datamodel. .. !! processed by numpydoc !! .. py:method:: set(data) Change datamodel in database. :Parameters: **data** : :obj:`body.Body` New body datamodel. .. !! processed by numpydoc !! .. py:method:: delete() Remove datamodel from database. .. !! processed by numpydoc !!