INNER CODE UNIT · Python
app_id
modal-labs/modal-client · py/modal/app.py:299
def app_id(self) -> str | None:
"""Return the app_id of a running or stopped app.
Returns:
The app ID when the app has been deployed or run, otherwise None.
"""
return self._app_id
@property
def description(self) -> str | None:
"""The App's `name`, if available, or a fallback descriptive identifier.
Returns:
Human-readable description string for the app.
"""
return self._description
@description.setter