Represents the result of the API call, could be success or failure.
Properties
| Property | Type | Description |
|---|
| Succeeded | boolean | Indicates if the operation was successful. |
| Data | object | The actual result data (only present if Succeeded is true). |
| Error | Error | Domain-level error details (only present if Succeeded is false). |
| SystemError | SystemError | More detailed internal error in system level. |
| CapturedValues | object | Additional contextual metadata in key-value based format (optional). |
Error Object
| Property | Type | Description |
|---|
| Code | string | The code of error, could be usefule for programmatic handling. |
| Message | string | The message of error. |
SystemError Object
| Property | Type | Description |
|---|
| Message | string | The message of error. |
| ModelState | object | key-value based model state error details, key is string, value type is an array of string. |