LambdaFunctionFailedEventAttributes.fromJson constructor
Implementation
factory LambdaFunctionFailedEventAttributes.fromJson(
Map<String, dynamic> json) {
return LambdaFunctionFailedEventAttributes(
scheduledEventId: json['scheduledEventId'] as int,
startedEventId: json['startedEventId'] as int,
details: json['details'] as String?,
reason: json['reason'] as String?,
);
}