DescribeEntitiesDetectionJobResponse.fromJson constructor

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

Implementation

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