# StringOptions

`import { StringOptions } from "destack:fuzz";`

Generated string options.

```ds title="StringOptions"
export struct StringOptions {
    minLength: uint32;
    maxLength: uint32;
    alphabet: [char];
}
```

[language/library/src/fuzz/options.ds:22:31](https://github.com/destack-sh/destack/blob/main/language/library/src/fuzz/options.ds#L22-L31)

## Members

### `minLength: uint32`

Minimum string length.

### `maxLength: uint32`

Maximum string length.

### `alphabet: [char]`

Characters to generate from when provided.
