Skip to main content

BackupRestoreResult

Namespace: Meshmakers.Octo.Runtime.Contracts.Blueprints

Result of a backup restore operation

public class BackupRestoreResult

Inheritance ObjectBackupRestoreResult

Properties

Success

Whether the restore was successful

public bool Success { get; set; }

Property Value

Boolean

EntitiesRestored

Number of entities restored

public int EntitiesRestored { get; set; }

Property Value

Int32

Errors

Errors that occurred during restore

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

Property Value

List<String>

Warnings

Warnings generated during restore

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

Property Value

List<String>

RestoredBackup

The backup that was restored

public BackupInfo RestoredBackup { get; set; }

Property Value

BackupInfo

Constructors

BackupRestoreResult()

public BackupRestoreResult()