BlueprintUpdatePreview
Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints
Preview of changes that would be made by a blueprint update
public class BlueprintUpdatePreview
Inheritance Object → BlueprintUpdatePreview
Properties
EntitiesToAdd
Number of entities that would be added
public int EntitiesToAdd { get; set; }
Property Value
EntitiesToUpdate
Number of entities that would be updated
public int EntitiesToUpdate { get; set; }
Property Value
EntitiesToDelete
Number of entities that would be deleted
public int EntitiesToDelete { get; set; }
Property Value
Conflicts
Detected conflicts that need resolution
public List<BlueprintUpdateConflict> Conflicts { get; set; }
Property Value
Warnings
Warnings about potential issues
public List<string> Warnings { get; set; }
Property Value
CanProceed
Whether the update can proceed without manual intervention
public bool CanProceed { get; }
Property Value
Constructors
BlueprintUpdatePreview()
public BlueprintUpdatePreview()