INNER CODE UNIT · Python
name
modal-labs/modal-client · py/modal/app.py:267
def name(self) -> str | None:
"""The user-provided name of the App.
Returns:
The configured app name, if any.
"""
return self._name
@property
@with_deprecation_warning(
(2026, 8, 26),
"`App.is_interactive` is deprecated and will be removed in `modal` version 1.6.0",
)
def is_interactive(self) -> bool:
"""mdmd:hidden"""
return self._is_interactive_
@property