DescribeRecommendationExportJobsResponse.fromJson constructor
DescribeRecommendationExportJobsResponse.fromJson(
- Map<String, dynamic> json
)
Implementation
factory DescribeRecommendationExportJobsResponse.fromJson(
Map<String, dynamic> json) {
return DescribeRecommendationExportJobsResponse(
nextToken: json['nextToken'] as String?,
recommendationExportJobs: (json['recommendationExportJobs'] as List?)
?.whereNotNull()
.map((e) =>
RecommendationExportJob.fromJson(e as Map<String, dynamic>))
.toList(),
);
}