-
Notifications
You must be signed in to change notification settings - Fork 29
/
Copy pathalb_event.g.dart
40 lines (34 loc) · 1.36 KB
/
alb_event.g.dart
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// GENERATED CODE - DO NOT MODIFY BY HAND
part of 'alb_event.dart';
// **************************************************************************
// JsonSerializableGenerator
// **************************************************************************
AwsALBEvent _$AwsALBEventFromJson(Map<String, dynamic> json) {
return AwsALBEvent(
context: json['context'] == null
? null
: AwsALBEventContext.fromJson(json['context'] as Map<String, dynamic>),
httpMethod: json['httpMethod'] as String?,
path: json['path'] as String?,
headers: json['headers'] as Map<String, dynamic>?,
queryStringParameters:
json['queryStringParameters'] as Map<String, dynamic>?,
body: json['body'] as String?,
isBase64Encoded: json['isBase64Encoded'] as bool?,
);
}
Map<String, dynamic> _$AwsALBEventToJson(AwsALBEvent instance) =>
<String, dynamic>{
'context': instance.context,
'httpMethod': instance.httpMethod,
'path': instance.path,
'headers': instance.headers,
'queryStringParameters': instance.queryStringParameters,
'body': instance.body,
'isBase64Encoded': instance.isBase64Encoded,
};
AwsALBEventContext _$AwsALBEventContextFromJson(Map<String, dynamic> json) {
return AwsALBEventContext();
}
Map<String, dynamic> _$AwsALBEventContextToJson(AwsALBEventContext instance) =>
<String, dynamic>{};