For the complete documentation index, see llms.txt. This page is also available as Markdown.
Enum.values
Returns the values of the enum.
property value: str
Query Example
from glider import*defquery(): contracts =Contracts().exec(1,71) contract = contracts[0]for enum in contract.enums().exec():for enum_value in enum.values:print(enum_value)return[]