DescribeEventsDetectionJobResponse.fromJson constructor

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

Implementation

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