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

# SectionEditingOptions Type

> SectionEditingOptions type represents the configuration options for section editing features

SectionEditingOptions type represents the configuration options for section editing features within the SDK. The code snippet below shows how to use the `SectionEditingOptions` type to create a section editing options object.

```js JavaScript theme={"theme":{"light":"github-dark","dark":"material-theme-darker"}}
type SectionEditingOptions = {
  enableDictation?: boolean;
  enableCopy?: boolean;
};
```

## Properties

<Expandable title="properties" defaultOpen="true">
  <ResponseField name="enableDictation" type="boolean" default="true">
    Whether to enable dictation feature for the sections
  </ResponseField>

  <ResponseField name="enableCopy" type="boolean" default="true">
    Whether to enable copying the section contents
  </ResponseField>
</Expandable>
