StopPHIDetectionJobResponse.fromJson constructor

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

Implementation

factory StopPHIDetectionJobResponse.fromJson(Map<String, dynamic> json) {
  return StopPHIDetectionJobResponse(
    jobId: json['JobId'] as String?,
  );
}