mirror of
https://github.com/foss42/apidash.git
synced 2025-05-25 10:16:43 +08:00
28 lines
1.1 KiB
Dart
28 lines
1.1 KiB
Dart
// GENERATED CODE - DO NOT MODIFY BY HAND
|
|
|
|
part of 'history_request_model.dart';
|
|
|
|
// **************************************************************************
|
|
// JsonSerializableGenerator
|
|
// **************************************************************************
|
|
|
|
_$HistoryRequestModelImpl _$$HistoryRequestModelImplFromJson(Map json) =>
|
|
_$HistoryRequestModelImpl(
|
|
historyId: json['historyId'] as String,
|
|
metaData: HistoryMetaModel.fromJson(
|
|
Map<String, Object?>.from(json['metaData'] as Map)),
|
|
httpRequestModel: HttpRequestModel.fromJson(
|
|
Map<String, Object?>.from(json['httpRequestModel'] as Map)),
|
|
httpResponseModel: HttpResponseModel.fromJson(
|
|
Map<String, Object?>.from(json['httpResponseModel'] as Map)),
|
|
);
|
|
|
|
Map<String, dynamic> _$$HistoryRequestModelImplToJson(
|
|
_$HistoryRequestModelImpl instance) =>
|
|
<String, dynamic>{
|
|
'historyId': instance.historyId,
|
|
'metaData': instance.metaData.toJson(),
|
|
'httpRequestModel': instance.httpRequestModel.toJson(),
|
|
'httpResponseModel': instance.httpResponseModel.toJson(),
|
|
};
|