mirror of
https://github.com/LukeHagar/Dokploy-ts-sdk.git
synced 2025-12-06 04:19:37 +00:00
22 lines
971 B
Markdown
22 lines
971 B
Markdown
# ErrorT
|
|
|
|
Error response
|
|
|
|
## Example Usage
|
|
|
|
```typescript
|
|
import { ErrorT } from "dokploy/models";
|
|
|
|
let value: ErrorT = {
|
|
message: "<value>",
|
|
code: "<value>",
|
|
};
|
|
```
|
|
|
|
## Fields
|
|
|
|
| Field | Type | Required | Description |
|
|
| ------------------------------------ | ------------------------------------ | ------------------------------------ | ------------------------------------ |
|
|
| `message` | *string* | :heavy_check_mark: | N/A |
|
|
| `code` | *string* | :heavy_check_mark: | N/A |
|
|
| `issues` | [models.Issue](../models/issue.md)[] | :heavy_minus_sign: | N/A | |