Files
speckle-sharp-sdk/src/Speckle.Sdk/Api/GraphQL/Models/Version.cs
T
Jedd Morgan 68a407905d Add workspaces queries (#291)
* Add workspaces queries

* Format

* extra tweaks

* init speckle verify

* Add workspace creation state

* Add workspace creation test

* test exceptional cases

* GetActiveWorkspace tests

* fixed test
2025-05-01 21:23:30 +03:00

15 lines
491 B
C#

namespace Speckle.Sdk.Api.GraphQL.Models;
public sealed class Version
{
public LimitedUser? authorUser { get; init; }
public DateTime createdAt { get; init; }
public string id { get; init; }
public string? message { get; init; }
public Uri previewUrl { get; init; }
/// <remarks>May be <see langword="null"/> if workspaces version history limit has been exceeded</remarks>
public string? referencedObject { get; init; }
public string? sourceApplication { get; init; }
}