VolumeRecoveryPointInfo.fromJson constructor
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?,
);
}