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