DeleteSnapshotScheduleOutput.fromJson constructor

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

Implementation

factory DeleteSnapshotScheduleOutput.fromJson(Map<String, dynamic> json) {
  return DeleteSnapshotScheduleOutput(
    volumeARN: json['VolumeARN'] as String?,
  );
}