RetrieveTapeRecoveryPointOutput.fromJson constructor

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

Implementation

factory RetrieveTapeRecoveryPointOutput.fromJson(Map<String, dynamic> json) {
  return RetrieveTapeRecoveryPointOutput(
    tapeARN: json['TapeARN'] as String?,
  );
}