Enum.max

Returns the maximum value of the enum.

property max: int

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.max)

    return []

Example Output

[
  {
    "print_output": [
      "4"
    ]
  }
]

Last updated