DeleteBackupPlanOutput.fromJson constructor
Implementation
factory DeleteBackupPlanOutput.fromJson(Map<String, dynamic> json) {
return DeleteBackupPlanOutput(
backupPlanArn: json['BackupPlanArn'] as String?,
backupPlanId: json['BackupPlanId'] as String?,
deletionDate: timeStampFromJson(json['DeletionDate']),
versionId: json['VersionId'] as String?,
);
}