Files
Dokploy-ts-sdk/docs/models/operations/notificationcreatetelegramrequest.md
2025-09-26 02:33:10 +00:00

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 |