DescribePiiEntitiesDetectionJobResponse.fromJson constructor
Implementation
factory DescribePiiEntitiesDetectionJobResponse.fromJson(
Map<String, dynamic> json) {
return DescribePiiEntitiesDetectionJobResponse(
piiEntitiesDetectionJobProperties:
json['PiiEntitiesDetectionJobProperties'] != null
? PiiEntitiesDetectionJobProperties.fromJson(
json['PiiEntitiesDetectionJobProperties']
as Map<String, dynamic>)
: null,
);
}