ExportBackupPlanTemplateOutput.fromJson constructor

ExportBackupPlanTemplateOutput.fromJson(
  1. Map<String, dynamic> json
)

Implementation

factory ExportBackupPlanTemplateOutput.fromJson(Map<String, dynamic> json) {
  return ExportBackupPlanTemplateOutput(
    backupPlanTemplateJson: json['BackupPlanTemplateJson'] as String?,
  );
}