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