Skip to main content

BlueprintMigrationStepResult

Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints

Result of a single migration step

public class BlueprintMigrationStepResult

Inheritance ObjectBlueprintMigrationStepResult

Properties

StepId

The step ID from the migration script

public string StepId { get; set; }

Property Value

String

Success

Whether the step completed successfully

public bool Success { get; set; }

Property Value

Boolean

Skipped

Whether the step was skipped

public bool Skipped { get; set; }

Property Value

Boolean

SkipReason

Reason for skipping (if skipped)

public string SkipReason { get; set; }

Property Value

String

Error

Error message if the step failed

public string Error { get; set; }

Property Value

String

EntitiesAffected

Number of entities affected by this step

public int EntitiesAffected { get; set; }

Property Value

Int32

Constructors

BlueprintMigrationStepResult()

Caution

Constructors of types with required members are not supported in this version of your compiler.


public BlueprintMigrationStepResult()