Files
speckle-sharp-sdk/src/Speckle.Sdk/Api/GraphQL/Models/ModelIngestionStatusData.cs
T
Jedd Morgan 9a74195b24
.NET Build and Publish / build (push) Has been cancelled
feat(api): Add versionId to ModelIngestion (#448)
* Add version id to ingestion query

* and the sub

* Add project & user ids

* test
2026-02-26 17:10:54 +00:00

11 lines
302 B
C#

using Speckle.Sdk.Api.GraphQL.Enums;
namespace Speckle.Sdk.Api.GraphQL.Models;
public sealed class ModelIngestionStatusData
{
public required ModelIngestionStatus status { get; init; }
public required string? progressMessage { get; init; }
public required string? versionId { get; init; }
}