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

# SetShuttersStatus

Allow to set the shutters status (closed/open)

<Tabs>
  <Tab title="Parameters">
    <div class="rounded-lg m-0">
      <table class="m-0 w-full rounded-lg text-sm text-left rtl:text-right text-gray-500 dark:text-gray-400">
        <thead class="thead text-xs text-gray-700 uppercase bg-gray-50 dark:bg-gray-700 dark:text-gray-400">
          <tr>
            <th scope="col" class="px-6 py-3 whitespace-nowrap">
              Name
            </th>

            <th scope="col" class="px-6 py-3 whitespace-nowrap">
              Type
            </th>

            <th scope="col" class="px-6 py-3 whitespace-nowrap">
              Default
            </th>

            <th scope="col" class="px-6 py-3 whitespace-nowrap">
              Description
            </th>
          </tr>
        </thead>

        <tbody>
          <tr class="body-item body-item bg-white border-b dark:bg-gray-800 dark:border-gray-700 border-gray-200">
            <td class="px-6 py-4">id</td>
            <td class="px-6 py-4">number</td>

            <td class="px-6 py-4" />

            <td class="px-6 py-4">The store id (only 1 for now)</td>
          </tr>

          <tr class="body-item body-item bg-white border-b dark:bg-gray-800 dark:border-gray-700 border-gray-200">
            <td class="px-6 py-4">status</td>
            <td class="px-6 py-4">boolean</td>
            <td class="px-6 py-4">false</td>

            <td class="px-6 py-4">
              The new shutters status, true = open, false = closed
            </td>
          </tr>
        </tbody>
      </table>
    </div>
  </Tab>

  <Tab title="Returns">Nothing.</Tab>
</Tabs>

# Example

```lua theme={null}
exports["utility_jewelry"]:SetShuttersStatus(1, true) -- opens shutters
exports["utility_jewelry"]:SetShuttersStatus(1, false) -- closes shutters
```
