Struct.name

Returns the name of the struct.

property name : str

Query Example

from glider import *

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

  for struct in contracts[0].structs().exec():
    print(struct.name)

  return []

Example Output

[
  {
    "print_output": [
      "UserInfo"
    ]
  }
]

Last updated