> 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

Returns the values of the enum.

*`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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FaYgNwyEBQsVc4B4rbqqT%2FScreenshot%202025-07-25%20at%206.32.13%E2%80%AFPM.png?alt=media&amp;token=463712aa-1797-4fc8-98e2-f71d133b9d89" alt=""><figcaption></figcaption></figure>
