> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/struct/struct.name.md).

# Struct.name

Returns the name of the struct.

*`property`*` ``name :`` `*`str`*

## Query Example

```python
from glider import *


def query():
  contracts = Contracts().with_name("DefaultReserveInterestRateStrategy").exec(1)

  for contract in contracts:
    for struct in contract.structs().exec():
      print(struct.name)

  return contracts
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2F7F9gTJplHOYPWMFlMzah%2FScreenshot%202025-09-10%20at%205.35.44%E2%80%AFPM.png?alt=media&amp;token=f5b5a971-ee93-40d1-ba23-097765f0a241" alt=""><figcaption></figcaption></figure>
