DescribePHIDetectionJobResponse.fromJson constructor

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

Implementation

factory DescribePHIDetectionJobResponse.fromJson(Map<String, dynamic> json) {
  return DescribePHIDetectionJobResponse(
    comprehendMedicalAsyncJobProperties:
        json['ComprehendMedicalAsyncJobProperties'] != null
            ? ComprehendMedicalAsyncJobProperties.fromJson(
                json['ComprehendMedicalAsyncJobProperties']
                    as Map<String, dynamic>)
            : null,
  );
}