DeleteTapeOutput.fromJson constructor

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

Implementation

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