Enum.max
Returns the maximum value of the enum.
property
max:
int
Query Example
from glider import *
def query():
contracts = Contracts().exec(1, 71)
for enum in contracts[0].enums().exec():
print(enum.max)
return []
Example Output

Last updated