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