VolumeRecoveryPointInfo.fromJson constructor

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

Implementation

factory VolumeRecoveryPointInfo.fromJson(Map<String, dynamic> json) {
  return VolumeRecoveryPointInfo(
    volumeARN: json['VolumeARN'] as String?,
    volumeRecoveryPointTime: json['VolumeRecoveryPointTime'] as String?,
    volumeSizeInBytes: json['VolumeSizeInBytes'] as int?,
    volumeUsageInBytes: json['VolumeUsageInBytes'] as int?,
  );
}