Returns the maximum value of the enum.
property max: int
property
max:
int
from glider import * def query(): contracts = Contracts().exec(1, 166) i = 0 contract = contracts[0] for enum in contract.enums().exec(): print(enum.max) return []
[ { "print_output": [ "4" ] } ]
Last updated 2 months ago