> ## Documentation Index
> Fetch the complete documentation index at: https://cdktn.io/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# CSharp: LazyListValueOptions

> CDKTN Core API Reference for LazyListValueOptions in CSharp.

Options for creating a lazy list token.

## Initializer <a name="Initializer" id="cdktn.LazyListValueOptions.Initializer" />

```csharp theme={null}
using Io.Cdktn;

new LazyListValueOptions {
    string DisplayHint = null,
    bool OmitEmpty = null
};
```

## Properties <a name="Properties" id="Properties" />

| **Name**                                                                                | **Type**            | **Description**                                            |
| --------------------------------------------------------------------------------------- | ------------------- | ---------------------------------------------------------- |
| <code><a href="#cdktn.LazyListValueOptions.property.displayHint">DisplayHint</a></code> | <code>string</code> | Use the given name as a display hint.                      |
| <code><a href="#cdktn.LazyListValueOptions.property.omitEmpty">OmitEmpty</a></code>     | <code>bool</code>   | If the produced list is empty, return 'undefined' instead. |

***

### `DisplayHint`<sup>Optional</sup> <a name="DisplayHint" id="cdktn.LazyListValueOptions.property.displayHint" />

```csharp theme={null}
public string DisplayHint { get; set; }
```

* *Type:* string
* *Default:* No hint

Use the given name as a display hint.

***

### `OmitEmpty`<sup>Optional</sup> <a name="OmitEmpty" id="cdktn.LazyListValueOptions.property.omitEmpty" />

```csharp theme={null}
public bool OmitEmpty { get; set; }
```

* *Type:* bool
* *Default:* false

If the produced list is empty, return 'undefined' instead.

***
