For the complete documentation index, see llms.txt. This page is also available as Markdown.
Struct.name
Returns the name of the struct.
property name : str
Query Example
from glider import*defquery(): contracts =Contracts().with_name("DefaultReserveInterestRateStrategy").exec(1)for contract in contracts:for struct in contract.structs().exec():print(struct.name)return contracts