mirror of
https://github.com/LukeHagar/plexjs.git
synced 2025-12-06 12:37:46 +00:00
3.6 KiB
3.6 KiB
ButlerTask
Example Usage
import { ButlerTask } from "@lukehagar/plexjs/sdk/models/operations";
let value: ButlerTask = {
name: "BackupDatabase",
interval: 3,
title: "Backup Database",
description:
"Create a backup copy of the server's database in the configured backup directory",
};
Fields
| Field | Type | Required | Description | Example |
|---|---|---|---|---|
name |
string | ➖ | N/A | BackupDatabase |
interval |
number | ➖ | N/A | 3 |
scheduleRandomized |
boolean | ➖ | N/A | |
enabled |
boolean | ➖ | N/A | |
title |
string | ➖ | N/A | Backup Database |
description |
string | ➖ | N/A | Create a backup copy of the server's database in the configured backup directory |