> 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/structfield/structfield.type.md).

# StructField.type

*`property`*` ``type :`` `*`Type`*

## 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():
      for struct_field in struct.fields:
        print(struct_field.type)

  return contracts
```

## Example Output

<figure><img src="/files/zzWwzgb7n1SX68A2oXCy" alt=""><figcaption></figcaption></figure>
