pip_services3_commons.data.INamed module

pip_services3_commons.data.INamed

Interface for named data objects

copyright

Conceptual Vision Consulting LLC 2018-2019, see AUTHORS for more details.

license

MIT, see LICENSE for more details.

class pip_services3_commons.data.INamed.INamed

Bases: object

Interface for data objects that have human-readable names.

Example:

class MyData(IIdentifiable, INamed):
    id = None
    name = None
name: str = None