Backup info
This function returns entities which are unexportable and would not be backed up if a backup were to be created and finalized. This function is informational and does not create a backup file.
Function
- React Native
- iOS
- Android
backupInfo(): Promise<UnexportableEntities>
func backupInfo() throws -> UnexportableEntitiesBindingDto
fun `backupInfo`(): UnexportableEntitiesBindingDto
Parameters
None
Return value
- React Native
- iOS
- Android
export interface UnexportableEntities {
credentials: CredentialDetail[];
keys: KeyListItem[];
dids: DidListItem[];
totalCredentials: number;
totalKeys: number;
totalDids: number;
}
public struct UnexportableEntitiesBindingDto {
public var credentials: [CredentialDetailBindingDto]
public var keys: [KeyListItemBindingDto]
public var dids: [DidListItemBindingDto]
public var totalCredentials: UInt64
public var totalKeys: UInt64
public var totalDids: UInt64
}
data class UnexportableEntitiesBindingDto (
var `credentials`: List<CredentialDetailBindingDto>,
var `keys`: List<KeyListItemBindingDto>,
var `dids`: List<DidListItemBindingDto>,
var `totalCredentials`: ULong,
var `totalKeys`: ULong,
var `totalDids`: ULong
)