combocurve-client-csharp

Logo

C# client for the ComboCurve REST API

View the Project on GitHub insidepetroleum/combocurve-client-csharp

ComboCurve.Api.Model.ForecastRunStatus

Properties

Name Type Description Notes
JobId string The ID of this forecast run.  
Status string Current status of the run. `pending` — queued but not yet started. `running` — actively executing. `successful` — completed without errors. `failed` — completed with errors or was cancelled.  
Progress int Estimated completion percentage (0–100). Always 100 when `status` is `successful`.  
CreatedAt DateTimeOffset? ISO 8601 timestamp when the run was queued. [optional]
StartedAt DateTimeOffset? ISO 8601 timestamp when execution began, or null if still pending. [optional]
CompletedAt DateTimeOffset? ISO 8601 timestamp when the run finished (success or failure), or null if not yet complete. [optional]
Result ForecastRunStatusResult   [optional]
Error string Error message when `status` is `failed`, otherwise null. [optional]

[Back to Model list] [Back to API list] [Back to README]