mirror of
https://github.com/LukeHagar/Dokploy-ts-sdk.git
synced 2025-12-06 20:37:44 +00:00
31 lines
1.2 KiB
Markdown
31 lines
1.2 KiB
Markdown
# NotificationCreateTelegramRequest
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { NotificationCreateTelegramRequest } from "dokploy/models/operations";
|
|
|
|
let value: NotificationCreateTelegramRequest = {
|
|
appBuildError: true,
|
|
databaseBackup: false,
|
|
dokployRestart: true,
|
|
name: "<value>",
|
|
appDeploy: true,
|
|
dockerCleanup: false,
|
|
botToken: "<value>",
|
|
chatId: "<id>",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ------------------ | ------------------ | ------------------ | ------------------ |
|
|
| `appBuildError` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `databaseBackup` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `dokployRestart` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `name` | *string* | :heavy_check_mark: | N/A |
|
|
| `appDeploy` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `dockerCleanup` | *boolean* | :heavy_check_mark: | N/A |
|
|
| `botToken` | *string* | :heavy_check_mark: | N/A |
|
|
| `chatId` | *string* | :heavy_check_mark: | N/A | |