toJson method
Implementation
core.Map<core.String, core.dynamic> toJson() {
final applicableResource = this.applicableResource;
final backupConfigSource = this.backupConfigSource;
final backupConfigSourceDisplayName = this.backupConfigSourceDisplayName;
final backupDrPlanConfig = this.backupDrPlanConfig;
final backupDrTemplateConfig = this.backupDrTemplateConfig;
final backupLocations = this.backupLocations;
final backupVault = this.backupVault;
final latestSuccessfulBackupTime = this.latestSuccessfulBackupTime;
final pitrSettings = this.pitrSettings;
final state = this.state;
final type = this.type;
return {
'applicableResource': ?applicableResource,
'backupConfigSource': ?backupConfigSource,
'backupConfigSourceDisplayName': ?backupConfigSourceDisplayName,
'backupDrPlanConfig': ?backupDrPlanConfig,
'backupDrTemplateConfig': ?backupDrTemplateConfig,
'backupLocations': ?backupLocations,
'backupVault': ?backupVault,
'latestSuccessfulBackupTime': ?latestSuccessfulBackupTime,
'pitrSettings': ?pitrSettings,
'state': ?state,
'type': ?type,
};
}