EventsConfiguration.fromJson constructor

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

Implementation

factory EventsConfiguration.fromJson(Map<String, dynamic> json) {
  return EventsConfiguration(
    botId: json['BotId'] as String?,
    lambdaFunctionArn: json['LambdaFunctionArn'] as String?,
    outboundEventsHTTPSEndpoint:
        json['OutboundEventsHTTPSEndpoint'] as String?,
  );
}