Enum.name

Returns the name of the enum.

property name: str

Query Example

from glider import *

def query():
    contracts = Contracts().exec(1, 71)

    for enum in contracts[0].enums().exec():
      print(enum.name)

    return []

Example Output

Last updated