Returns the name of the struct.
property name : str
property
name :
str
from glider import * def query(): contracts = Contracts().exec(1, 26) for struct in contracts[0].structs().exec(): print(struct.name) return []
[ { "print_output": [ "UserInfo" ] } ]
Last updated 2 months ago