Skip to main content

BlueprintUpdatePreview

Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints

Preview of changes that would be made by a blueprint update

public class BlueprintUpdatePreview

Inheritance ObjectBlueprintUpdatePreview

Properties

EntitiesToAdd

Number of entities that would be added

public int EntitiesToAdd { get; set; }

Property Value

Int32

EntitiesToUpdate

Number of entities that would be updated

public int EntitiesToUpdate { get; set; }

Property Value

Int32

EntitiesToDelete

Number of entities that would be deleted

public int EntitiesToDelete { get; set; }

Property Value

Int32

Conflicts

Detected conflicts that need resolution

public List<BlueprintUpdateConflict> Conflicts { get; set; }

Property Value

List<BlueprintUpdateConflict>

Warnings

Warnings about potential issues

public List<string> Warnings { get; set; }

Property Value

List<String>

CanProceed

Whether the update can proceed without manual intervention

public bool CanProceed { get; }

Property Value

Boolean

Constructors

BlueprintUpdatePreview()

public BlueprintUpdatePreview()