id#

property ModelBuilder.id: str[source]#

Generate a unique hash value for the model.

The hash value is created using the last 16 characters of the SHA256 hash encoding, based on the model configuration, version, and model type.

Returns:
str

A string of length 16 characters containing a unique hash of the model.

Examples

model = MyModel()
model.id
"0123456789abcdef"