Spaces:
Running
Running
File size: 312 Bytes
c61ccee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
from dataclasses import dataclass
__all__ = ["ScriptObjectMeta"]
@dataclass
class ScriptObjectMeta:
"""
Metadata which is stored on nodes representing ScriptObjects.
"""
# Key into constants table to retrieve the real ScriptObject.
constant_name: str
class_fqn: str
|