Enum.name
Returns the name of the enum.
property
name:
str
Query Example
from glider import *
def query():
contracts = Contracts().exec(1, 166)
i = 0
contract = contracts[0]
for enum in contract.enums().exec():
print(enum.name)
return []
Example Output
[
{
"print_output": [
"RecoverError"
]
}
]
Last updated