> 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/enum/enum.values.md).

# Enum.values

*`property`*` ``value:`` `*`str`*

## Query Example

```python
from glider import *

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

    contract = contracts[0]
    
    for enum in contract.enums().exec():
      for enum_value in enum.values:
        print(enum_value)

    return []
```

## Example Output

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